Replicated code from Jenny Trickey’s repo here
Summaries generated: 2025 Jun 02 22:35 UTC
Load needed libraries.
# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)
# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)
Set user-defined variables.
# name project
# ProjID <- 'MHI UxS Glider Project'
# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)
# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets,
paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML
# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp
# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files")
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")
# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported
# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)
#Set time zone to UTC
Sys.setenv(TZ = 'UTC')
# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3',
# '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a',
'#66a61e', '#e6ab02')
Source some external functions
source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))
# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))
If already created, load an existing dets PAMpal
AcousticStudy object for event processing. We need to load both the
unfiltered dets and filtered detsFilt
AcousticStudies.
# load existing dets AcousticStudy (created with
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
dets <- readRDS(detsFile)
cat('Loaded', detsFile, '\n')
} else {
cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_008/CalCurCEAS_2024_008_Filtered.rdata
if (file.exists(detsFiltFile)){
detsFilt <- readRDS(detsFiltFile)
cat('Loaded', detsFiltFile, '\n')
} else {
cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_008/CalCurCEAS_2024_008_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))
Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_008/CalCurCEAS_2024_008_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_008/CalCurCEAS_2024_008_ch1.rdata
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 5289 out of 5289 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========== | 8% | |=========== | 8% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |=============== | 11% | |=============== | 12% | |================ | 12% | |================ | 13% | |================= | 13% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |==================== | 15% | |==================== | 16% | |===================== | 16% | |===================== | 17% | |====================== | 17% | |====================== | 18% | |======================= | 18% | |======================== | 19% | |========================= | 19% | |========================= | 20% | |========================== | 20% | |========================== | 21% | |=========================== | 21% | |=========================== | 22% | |============================ | 22% | |============================= | 22% | |============================= | 23% | |============================== | 23% | |============================== | 24% | |=============================== | 24% | |=============================== | 25% | |================================ | 25% | |================================ | 26% | |================================= | 26% | |================================== | 26% | |================================== | 27% | |=================================== | 27% | |=================================== | 28% | |==================================== | 28% | |==================================== | 29% | |===================================== | 29% | |====================================== | 30% | |======================================= | 30% | |======================================= | 31% | |======================================== | 31% | |======================================== | 32% | |========================================= | 32% | |========================================= | 33% | |========================================== | 33% | |=========================================== | 33% | |=========================================== | 34% | |============================================ | 34% | |============================================ | 35% | |============================================= | 35% | |============================================= | 36% | |============================================== | 36% | |============================================== | 37% | |=============================================== | 37% | |================================================ | 37% | |================================================ | 38% | |================================================= | 38% | |================================================= | 39% | |================================================== | 39% | |================================================== | 40% | |=================================================== | 40% | |=================================================== | 41% | |==================================================== | 41% | |===================================================== | 41% | |===================================================== | 42% | |====================================================== | 42% | |====================================================== | 43% | |======================================================= | 43% | |======================================================= | 44% | |======================================================== | 44% | |========================================================= | 45% | |========================================================== | 45% | |========================================================== | 46% | |=========================================================== | 46% | |=========================================================== | 47% | |============================================================ | 47% | |============================================================ | 48% | |============================================================= | 48% | |============================================================== | 48% | |============================================================== | 49% | |=============================================================== | 49% | |=============================================================== | 50% | |================================================================ | 50% | |================================================================ | 51% | |================================================================= | 51% | |================================================================= | 52% | |================================================================== | 52% | |=================================================================== | 52% | |=================================================================== | 53% | |==================================================================== | 53% | |==================================================================== | 54% | |===================================================================== | 54% | |===================================================================== | 55% | |====================================================================== | 55% | |======================================================================= | 56% | |======================================================================== | 56% | |======================================================================== | 57% | |========================================================================= | 57% | |========================================================================= | 58% | |========================================================================== | 58% | |========================================================================== | 59% | |=========================================================================== | 59% | |============================================================================ | 59% | |============================================================================ | 60% | |============================================================================= | 60% | |============================================================================= | 61% | |============================================================================== | 61% | |============================================================================== | 62% | |=============================================================================== | 62% | |=============================================================================== | 63% | |================================================================================ | 63% | |================================================================================= | 63% | |================================================================================= | 64% | |================================================================================== | 64% | |================================================================================== | 65% | |=================================================================================== | 65% | |=================================================================================== | 66% | |==================================================================================== | 66% | |==================================================================================== | 67% | |===================================================================================== | 67% | |====================================================================================== | 67% | |====================================================================================== | 68% | |======================================================================================= | 68% | |======================================================================================= | 69% | |======================================================================================== | 69% | |======================================================================================== | 70% | |========================================================================================= | 70% | |========================================================================================== | 71% | |=========================================================================================== | 71% | |=========================================================================================== | 72% | |============================================================================================ | 72% | |============================================================================================ | 73% | |============================================================================================= | 73% | |============================================================================================= | 74% | |============================================================================================== | 74% | |=============================================================================================== | 74% | |=============================================================================================== | 75% | |================================================================================================ | 75% | |================================================================================================ | 76% | |================================================================================================= | 76% | |================================================================================================= | 77% | |================================================================================================== | 77% | |================================================================================================== | 78% | |=================================================================================================== | 78% | |==================================================================================================== | 78% | |==================================================================================================== | 79% | |===================================================================================================== | 79% | |===================================================================================================== | 80% | |====================================================================================================== | 80% | |====================================================================================================== | 81% | |======================================================================================================= | 81% | |======================================================================================================== | 82% | |========================================================================================================= | 82% | |========================================================================================================= | 83% | |========================================================================================================== | 83% | |========================================================================================================== | 84% | |=========================================================================================================== | 84% | |=========================================================================================================== | 85% | |============================================================================================================ | 85% | |============================================================================================================= | 85% | |============================================================================================================= | 86% | |============================================================================================================== | 86% | |============================================================================================================== | 87% | |=============================================================================================================== | 87% | |=============================================================================================================== | 88% | |================================================================================================================ | 88% | |================================================================================================================ | 89% | |================================================================================================================= | 89% | |================================================================================================================== | 89% | |================================================================================================================== | 90% | |=================================================================================================================== | 90% | |=================================================================================================================== | 91% | |==================================================================================================================== | 91% | |==================================================================================================================== | 92% | |===================================================================================================================== | 92% | |====================================================================================================================== | 93% | |======================================================================================================================= | 93% | |======================================================================================================================= | 94% | |======================================================================================================================== | 94% | |======================================================================================================================== | 95% | |========================================================================================================================= | 95% | |========================================================================================================================= | 96% | |========================================================================================================================== | 96% | |=========================================================================================================================== | 96% | |=========================================================================================================================== | 97% | |============================================================================================================================ | 97% | |============================================================================================================================ | 98% | |============================================================================================================================= | 98% | |============================================================================================================================= | 99% | |============================================================================================================================== | 99% | |============================================================================================================================== | 100% | |===============================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 5289 out of 5289 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========== | 8% | |=========== | 8% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |=============== | 11% | |=============== | 12% | |================ | 12% | |================ | 13% | |================= | 13% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |==================== | 15% | |==================== | 16% | |===================== | 16% | |===================== | 17% | |====================== | 17% | |====================== | 18% | |======================= | 18% | |======================== | 19% | |========================= | 19% | |========================= | 20% | |========================== | 20% | |========================== | 21% | |=========================== | 21% | |=========================== | 22% | |============================ | 22% | |============================= | 22% | |============================= | 23% | |============================== | 23% | |============================== | 24% | |=============================== | 24% | |=============================== | 25% | |================================ | 25% | |================================ | 26% | |================================= | 26% | |================================== | 26% | |================================== | 27% | |=================================== | 27% | |=================================== | 28% | |==================================== | 28% | |==================================== | 29% | |===================================== | 29% | |====================================== | 30% | |======================================= | 30% | |======================================= | 31% | |======================================== | 31% | |======================================== | 32% | |========================================= | 32% | |========================================= | 33% | |========================================== | 33% | |=========================================== | 33% | |=========================================== | 34% | |============================================ | 34% | |============================================ | 35% | |============================================= | 35% | |============================================= | 36% | |============================================== | 36% | |============================================== | 37% | |=============================================== | 37% | |================================================ | 37% | |================================================ | 38% | |================================================= | 38% | |================================================= | 39% | |================================================== | 39% | |================================================== | 40% | |=================================================== | 40% | |=================================================== | 41% | |==================================================== | 41% | |===================================================== | 41% | |===================================================== | 42% | |====================================================== | 42% | |====================================================== | 43% | |======================================================= | 43% | |======================================================= | 44% | |======================================================== | 44% | |========================================================= | 45% | |========================================================== | 45% | |========================================================== | 46% | |=========================================================== | 46% | |=========================================================== | 47% | |============================================================ | 47% | |============================================================ | 48% | |============================================================= | 48% | |============================================================== | 48% | |============================================================== | 49% | |=============================================================== | 49% | |=============================================================== | 50% | |================================================================ | 50% | |================================================================ | 51% | |================================================================= | 51% | |================================================================= | 52% | |================================================================== | 52% | |=================================================================== | 52% | |=================================================================== | 53% | |==================================================================== | 53% | |==================================================================== | 54% | |===================================================================== | 54% | |===================================================================== | 55% | |====================================================================== | 55% | |======================================================================= | 56% | |======================================================================== | 56% | |======================================================================== | 57% | |========================================================================= | 57% | |========================================================================= | 58% | |========================================================================== | 58% | |========================================================================== | 59% | |=========================================================================== | 59% | |============================================================================ | 59% | |============================================================================ | 60% | |============================================================================= | 60% | |============================================================================= | 61% | |============================================================================== | 61% | |============================================================================== | 62% | |=============================================================================== | 62% | |=============================================================================== | 63% | |================================================================================ | 63% | |================================================================================= | 63% | |================================================================================= | 64% | |================================================================================== | 64% | |================================================================================== | 65% | |=================================================================================== | 65% | |=================================================================================== | 66% | |==================================================================================== | 66% | |==================================================================================== | 67% | |===================================================================================== | 67% | |====================================================================================== | 67% | |====================================================================================== | 68% | |======================================================================================= | 68% | |======================================================================================= | 69% | |======================================================================================== | 69% | |======================================================================================== | 70% | |========================================================================================= | 70% | |========================================================================================== | 71% | |=========================================================================================== | 71% | |=========================================================================================== | 72% | |============================================================================================ | 72% | |============================================================================================ | 73% | |============================================================================================= | 73% | |============================================================================================= | 74% | |============================================================================================== | 74% | |=============================================================================================== | 74% | |=============================================================================================== | 75% | |================================================================================================ | 75% | |================================================================================================ | 76% | |================================================================================================= | 76% | |================================================================================================= | 77% | |================================================================================================== | 77% | |================================================================================================== | 78% | |=================================================================================================== | 78% | |==================================================================================================== | 78% | |==================================================================================================== | 79% | |===================================================================================================== | 79% | |===================================================================================================== | 80% | |====================================================================================================== | 80% | |====================================================================================================== | 81% | |======================================================================================================= | 81% | |======================================================================================================== | 82% | |========================================================================================================= | 82% | |========================================================================================================= | 83% | |========================================================================================================== | 83% | |========================================================================================================== | 84% | |=========================================================================================================== | 84% | |=========================================================================================================== | 85% | |============================================================================================================ | 85% | |============================================================================================================= | 85% | |============================================================================================================= | 86% | |============================================================================================================== | 86% | |============================================================================================================== | 87% | |=============================================================================================================== | 87% | |=============================================================================================================== | 88% | |================================================================================================================ | 88% | |================================================================================================================ | 89% | |================================================================================================================= | 89% | |================================================================================================================== | 89% | |================================================================================================================== | 90% | |=================================================================================================================== | 90% | |=================================================================================================================== | 91% | |==================================================================================================================== | 91% | |==================================================================================================================== | 92% | |===================================================================================================================== | 92% | |====================================================================================================================== | 93% | |======================================================================================================================= | 93% | |======================================================================================================================= | 94% | |======================================================================================================================== | 94% | |======================================================================================================================== | 95% | |========================================================================================================================= | 95% | |========================================================================================================================= | 96% | |========================================================================================================================== | 96% | |=========================================================================================================================== | 96% | |=========================================================================================================================== | 97% | |============================================================================================================================ | 97% | |============================================================================================================================ | 98% | |============================================================================================================================= | 98% | |============================================================================================================================= | 99% | |============================================================================================================================== | 99% | |============================================================================================================================== | 100% | |===============================================================================================================================| 100%
Updated file paths to binaries in databases for Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_008/CalCurCEAS_2024_008_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_008/CalCurCEAS_2024_008_ch1.rdata
To be used for manual scoring based on report figures.
# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents),
species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))
# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}
# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]
# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
1700 events (files) in drift. 555 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.
Load the reference spectra for plotting, if set with
refSpecList.
# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
# e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')
refSpecs <- NULL
if (!is.null(refSpecList)){
refSpecs = list()
for (rs in refSpecList){
refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
}
}
Loop through each detection event (n = 555) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.
Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.
for (iEvent in c(1:nEventsFilt)){
# iEvent = 6 # for testing
# ("pagebreak \n")
# extract this event UID string
eventList <- PAMpal::events(detsFilt)
eventUID <- names(eventList)[iEvent]
###### summarize clicks ######
cl <- clickSummary(detsFilt, eventUID)
if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
# keep this in evTable
evTable$keep[evTable$id == eventUID] <- TRUE
evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak,
na.rm = TRUE)
# set header for this event and print time
cat('\n\n#### Event ID: ', names(eventList)[iEvent], '\n')
cat('Time: ', format(eventList[[eventUID]]@ancillary$grouping$start,
'%Y-%m-%d %H:%M%Z'), ' to ',
format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'),
'\n')
cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])),
'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
'filtering.\n')
cat('\n')
###### summarize whistles ######
# wl <- whistleSummary(detsFilt, eventUID)
#
# cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
# cat('\n')
###### click plots and table ######
cat('\n##### Click plots and table\n')
cat('\n SNR histogram includes all filtered clicks. Other plots contain only',
'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
'.\n')
cat('\n')
# if any clicks...
if (cl$nClicks > 0){
# histogram of all clicks and SNR >= 15 dB cut off
xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
if (any(!is.na(cl$snr))){
hist(cl$snr, breaks = seq(from = floor(min(cl$snr)),
to = xMax, by = 2),
main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
abline(v = 15, lty = 2, lwd = 2, col = 'red4')
}
}
# if sufficient good clicks...
if (cl$nGoodClicks > 0) {
# histogram of click durations - good clicks only
subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
hist(cl$goodClicks$duration,
breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100,
by = 100), main = 'Click duration', sub = subStr,
xlab = expression(paste('duration [', mu, 's]')))
abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
cat('\n')
cat('\n')
# Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
# NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
# be noisy for single clicks
# reducing wl can give more accurate noise floor but 'smoother' spectrum
# increasing wl will give more exact spectrum but may exclude too many
# clicks based on SNR (noise measure will overlap with click output; noise
# is just measured as same wl from start of binary snippet and binaries
# binary snippets are v short)
# Trial and error - 256 works ok for LLHARP data = 1.28 ms
# NB: JLKM uses 500 for beaked whales with samp rate 288k
avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256,
channel = params$channelNum, norm = TRUE,
noise = TRUE, sort = TRUE, snr = 15,
plot = c(TRUE, FALSE))
# concatenated spectrogram will get plotted within calculation
# avg spectrum plots separately (bc adding stuff)
if (!is.null(avgSpec)) {
# Peak freq as calculated by calculateAvgerageSpectra -for subtitle
peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0),
xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)',
main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
# add grid lines for frequency at 10 kHz intervals
for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
# add template spectra
if (length(refSpecs) > 0){
rsCols <- rsPalette[1:length(refSpecs)]
for (rs in 1:length(refSpecs)){
rsTmp <- refSpecList[rs]
rsNorm <- refSpecs[[rsTmp]]
rsMax <- max(rsNorm$dB)
rsNorm$dBNorm <- rsNorm$dB - rsMax
lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
}
}
# plot noise
lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
# plot avg spectrum
lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
# also plot median spectrum
medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
median(10^(y/20), na.rm = TRUE)}))
medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
# add legend
if (length(refSpecs) > 0){
legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
lty = c(rep(1, length(refSpecs)), 2, 1, 3),
lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
} else if (length(refSpecs) == 0){
legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
lty = c(2, 1, 3), lwd = c(2, 3, 2),
col = c('black', 'black', 'black'), cex = 0.8)
}
}
# NB: JLKM BW approach has additional plots here:
# IPI
# Waveform of strongest click
# Wigner plot
# We are not including those here because not really useful for FKW, but if
# interested in adding back in, see:
# https://github.com/jlkeating/PAMGuard_Event_Code
cat('\n')
cat('\n')
# create median stats table for clicks with -15 dB TK noise cut off
cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with',
'SNR >= 15 dB.')
cat('\n')
cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l',
row.names = FALSE) %>%
kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
full_width = F))
} else { # no good clicks so no summary plots/table
cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
}
###### whistle plots and table ######
#
# cat('\n##### Whistle plots and table\n')
#
# # if whistles present ...
# if (wl$nWhistles > 0) {
# # create median stats table for all whistles
# # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
# # cat('\n')
#
# # plot whistle contours
# # map the needed binary files
# binFiles <- dets@events[[eventUID]]@files$binaries
# wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
# binFiles)
# wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
#
# # load them
# whBin <- loadMultiBinaries(wmFiles)
# # trim to just the event time
# whBinEv <- whBin[names(whBin) %in%
# detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
#
# # #plot - ggplot version/functionized
# # pc <- plotContours(whBinEv)
# # # print(pc)
# # pc + ggtitle(eventUID)
# #
#
# # get plot limits
# # xMax <- 0
# # yMax <- 0
# # for (wc in 1:length(names(whBinEv))){
# # df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# # freq = whBinEv[[wc]]$freq/1000)
# # xMaxTmp <- max(df$time)
# # yMaxTmp <- max(df$freq)
# # if (xMaxTmp > xMax){xMax <- xMaxTmp}
# # if (yMaxTmp > yMax){yMax <- yMaxTmp}
# # }
# # or use standard max lims
# xMax <- 1.5
# yMax <- 20
#
# # plot each line
# plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)),
# xlab = 'Time (s)', ylab = 'Frequency (kHz)',
# main = 'Whistle Contours')
# # add grid lines for frequency at 0.125 s and 5 kHz intervals
# for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
# col="lightgray")}
# for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
# col="lightgray")}
# # loop through each contour
# for (wc in 1:length(names(whBinEv))){
# df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# freq = whBinEv[[wc]]$freq/1000)
# lines(df$time, df$freq, col = rgb(0,0,0,0.4))
# }
#
# # plot histogram of median frequency
# hist(wl$wh$freqMedian/1000,
# breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
# main = 'Histogram of whistle median frequency',
# xlab = 'Median frequency (kHz)')
#
# cat('\n')
# cat('\n')
#
# cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
# # create median stats table for all whistles
# cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l',
# row.names = FALSE) %>%
# kable_styling(bootstrap_options = c('basic', 'condensed'),
# full_width = F))
#
# } else {
# cat('\nNo whistles present.\n')
# }
cat('\n')
cat('\n\n --- \n\n')
cat('\n')
}# num clicks/peak freq check
} # loop
Time: 2024-09-13 22:06UTC to 2024-09-13 22:12UTC
Event contains 1002 original clicks, 501 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 272 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 6.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.31 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.86 (3.87 - 8.17) |
| Median duration [μs] (25-75 percentile) | 606 (117 - 1311) |
Time: 2024-09-14 17:30UTC to 2024-09-14 17:36UTC
Event contains 788 original clicks, 394 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 335 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.69 |
| Median 10dB Center Frequency [kHz] | 5.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.01 - 6.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.14 (4.25 - 7.72) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 223) |
Time: 2024-09-14 17:36UTC to 2024-09-14 17:42UTC
Event contains 1082 original clicks, 541 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 406 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (4.97 - 6.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (3.61 - 8.28) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 190) |
Time: 2024-09-14 18:00UTC to 2024-09-14 18:06UTC
Event contains 1676 original clicks, 838 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 748 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 5.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (5.03 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.94 (3.69 - 8.2) |
| Median duration [μs] (25-75 percentile) | 262 (0 - 1000) |
Time: 2024-09-15 03:12UTC to 2024-09-15 03:18UTC
Event contains 526 original clicks, 263 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 8.14 |
| Median 10dB Center Frequency [kHz] | 8.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (7.37 - 8.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 (5.97 - 10) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-15 03:18UTC to 2024-09-15 03:24UTC
Event contains 572 original clicks, 286 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.33 |
| Median 10dB Center Frequency [kHz] | 7.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (6.18 - 8.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (5.05 - 9.58) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 12) |
Time: 2024-09-15 05:24UTC to 2024-09-15 05:30UTC
Event contains 450 original clicks, 225 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 35 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 18 |
| Median 3dB Center Frequency [kHz] | 10.6 |
| Median 10dB Center Frequency [kHz] | 10.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.539 (10.1 - 10.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.08 (9.68 - 11.1) |
| Median duration [μs] (25-75 percentile) | 91 (100 - 435) |
Time: 2024-09-15 05:30UTC to 2024-09-15 05:36UTC
Event contains 452 original clicks, 226 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 67 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.15 |
| Median 10dB Center Frequency [kHz] | 8.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.987 (7.47 - 8.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 (6.67 - 9.77) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 203) |
Time: 2024-09-15 10:00UTC to 2024-09-15 10:06UTC
Event contains 472 original clicks, 236 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 121 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.34 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.87 (4.48 - 7.3) |
| Median duration [μs] (25-75 percentile) | 182 (100 - 216) |
Time: 2024-09-15 18:24UTC to 2024-09-15 18:30UTC
Event contains 622 original clicks, 311 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 229 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.32 |
| Median 10dB Center Frequency [kHz] | 6.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.69 - 6.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 (4.61 - 7.86) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 269) |
Time: 2024-09-15 18:30UTC to 2024-09-15 18:36UTC
Event contains 790 original clicks, 395 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 295 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.53 |
| Median 10dB Center Frequency [kHz] | 7.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (6.91 - 8.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 ( 5.7 - 9.65) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 20) |
Time: 2024-09-15 18:36UTC to 2024-09-15 18:42UTC
Event contains 1128 original clicks, 564 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 516 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.91 |
| Median 10dB Center Frequency [kHz] | 7.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.78 (5.93 - 8.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.15 (4.56 - 10.9) |
| Median duration [μs] (25-75 percentile) | 438 (100 - 2406) |
Time: 2024-09-15 18:42UTC to 2024-09-15 18:48UTC
Event contains 930 original clicks, 465 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 432 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.66 |
| Median 10dB Center Frequency [kHz] | 7.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (5.73 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.6 (3.82 - 9.61) |
| Median duration [μs] (25-75 percentile) | 73 (0 - 358) |
Time: 2024-09-15 18:48UTC to 2024-09-15 18:54UTC
Event contains 930 original clicks, 465 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 417 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.89 |
| Median 10dB Center Frequency [kHz] | 7.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.84 (5.52 - 8.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.19 (3.39 - 10.5) |
| Median duration [μs] (25-75 percentile) | 185 (0 - 373) |
Time: 2024-09-15 18:54UTC to 2024-09-15 19:00UTC
Event contains 1214 original clicks, 607 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 569 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.3 |
| Median 10dB Center Frequency [kHz] | 8.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (7.47 - 9.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 (5.38 - 10.5) |
| Median duration [μs] (25-75 percentile) | 328 (0 - 1181) |
Time: 2024-09-15 19:00UTC to 2024-09-15 19:06UTC
Event contains 754 original clicks, 377 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 347 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.87 |
| Median 10dB Center Frequency [kHz] | 8.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (7.18 - 8.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.31 (4.77 - 10.8) |
| Median duration [μs] (25-75 percentile) | 829 (0 - 1257) |
Time: 2024-09-15 19:18UTC to 2024-09-15 19:24UTC
Event contains 1686 original clicks, 843 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 699 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.65 - 8.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (5.23 - 9.57) |
| Median duration [μs] (25-75 percentile) | 7.8 (0 - 1000) |
Time: 2024-09-15 19:24UTC to 2024-09-15 19:30UTC
Event contains 1576 original clicks, 788 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 750 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.17 |
| Median 10dB Center Frequency [kHz] | 8.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.69 (6.79 - 8.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.74 (4.63 - 11.3) |
| Median duration [μs] (25-75 percentile) | 538 (123 - 1689) |
Time: 2024-09-15 19:30UTC to 2024-09-15 19:36UTC
Event contains 1600 original clicks, 800 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 738 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.6 |
| Median 3dB Center Frequency [kHz] | 8.51 |
| Median 10dB Center Frequency [kHz] | 8.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.95 (7.37 - 9.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.76 (4.35 - 12.1) |
| Median duration [μs] (25-75 percentile) | 447 (100 - 1515) |
Time: 2024-09-15 19:36UTC to 2024-09-15 19:42UTC
Event contains 1468 original clicks, 734 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 639 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.65 |
| Median 10dB Center Frequency [kHz] | 8.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 ( 7.8 - 9.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.63 (5.67 - 11.1) |
| Median duration [μs] (25-75 percentile) | 378 (0 - 1000) |
Time: 2024-09-15 19:42UTC to 2024-09-15 19:48UTC
Event contains 1122 original clicks, 561 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 503 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.92 |
| Median 10dB Center Frequency [kHz] | 8.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.99 ( 7.6 - 10) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.25 (4.85 - 12.3) |
| Median duration [μs] (25-75 percentile) | 263 (0 - 1000) |
Time: 2024-09-15 19:48UTC to 2024-09-15 19:54UTC
Event contains 1322 original clicks, 661 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 568 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.25 |
| Median 10dB Center Frequency [kHz] | 7.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.7 (7.13 - 9.21) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.02 (3.92 - 10.5) |
| Median duration [μs] (25-75 percentile) | 295 (0 - 480) |
Time: 2024-09-15 19:54UTC to 2024-09-15 20:00UTC
Event contains 1386 original clicks, 693 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 594 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.85 |
| Median 10dB Center Frequency [kHz] | 7.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (6.18 - 7.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.61 (4.56 - 9.54) |
| Median duration [μs] (25-75 percentile) | 29 (0 - 378) |
Time: 2024-09-15 20:12UTC to 2024-09-15 20:18UTC
Event contains 932 original clicks, 466 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 383 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.46 |
| Median 10dB Center Frequency [kHz] | 7.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (6.86 - 8.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.72 (5.06 - 9.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-15 20:18UTC to 2024-09-15 20:24UTC
Event contains 1736 original clicks, 868 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 710 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.99 |
| Median 10dB Center Frequency [kHz] | 7.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (7.12 - 8.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.7 (4.82 - 10.7) |
| Median duration [μs] (25-75 percentile) | 50 (0 - 371) |
Time: 2024-09-15 20:24UTC to 2024-09-15 20:30UTC
Event contains 1332 original clicks, 666 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 566 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.33 |
| Median 10dB Center Frequency [kHz] | 8.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (7.38 - 9.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.92 ( 5.5 - 11.3) |
| Median duration [μs] (25-75 percentile) | 72 (0 - 302) |
Time: 2024-09-15 20:30UTC to 2024-09-15 20:36UTC
Event contains 1638 original clicks, 819 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 734 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.26 |
| Median 10dB Center Frequency [kHz] | 7.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.76 (6.16 - 8.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.29 (4.05 - 10.3) |
| Median duration [μs] (25-75 percentile) | 358 (14 - 1406) |
Time: 2024-09-15 20:36UTC to 2024-09-15 20:42UTC
Event contains 1148 original clicks, 574 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 469 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.17 |
| Median 10dB Center Frequency [kHz] | 8.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (7.37 - 9.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.33 (5.34 - 11.5) |
| Median duration [μs] (25-75 percentile) | 73 (0 - 347) |
Time: 2024-09-15 20:42UTC to 2024-09-15 20:48UTC
Event contains 1232 original clicks, 616 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 476 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.46 |
| Median 10dB Center Frequency [kHz] | 7.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.91 - 7.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.09 (5.12 - 9.73) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 141) |
Time: 2024-09-15 21:00UTC to 2024-09-15 21:06UTC
Event contains 604 original clicks, 302 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 247 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.56 |
| Median 10dB Center Frequency [kHz] | 7.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.92 - 8.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 ( 5.4 - 9.08) |
| Median duration [μs] (25-75 percentile) | 36 (0 - 388) |
Time: 2024-09-15 21:06UTC to 2024-09-15 21:12UTC
Event contains 1342 original clicks, 671 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 588 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.72 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.61 (5.95 - 7.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.54 (3.53 - 9.86) |
| Median duration [μs] (25-75 percentile) | 182 (0 - 1000) |
Time: 2024-09-15 21:12UTC to 2024-09-15 21:18UTC
Event contains 1104 original clicks, 552 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 469 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.11 |
| Median 10dB Center Frequency [kHz] | 7.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (7.34 - 8.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.42 (5.06 - 10.4) |
| Median duration [μs] (25-75 percentile) | 16 (0 - 237) |
Time: 2024-09-15 21:30UTC to 2024-09-15 21:36UTC
Event contains 790 original clicks, 395 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 349 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.69 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (4.68 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.17 ( 3.4 - 8.59) |
| Median duration [μs] (25-75 percentile) | 68 (0 - 391) |
Time: 2024-09-15 21:36UTC to 2024-09-15 21:42UTC
Event contains 846 original clicks, 423 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 358 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.52 |
| Median 10dB Center Frequency [kHz] | 6.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (4.73 - 6.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.25 (3.69 - 8.53) |
| Median duration [μs] (25-75 percentile) | 86 (0 - 456) |
Time: 2024-09-15 21:42UTC to 2024-09-15 21:48UTC
Event contains 538 original clicks, 269 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 196 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.53 |
| Median 10dB Center Frequency [kHz] | 7.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.58 (7.04 - 8.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.45 (5.45 - 10.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-15 22:06UTC to 2024-09-15 22:12UTC
Event contains 646 original clicks, 323 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 260 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.18 |
| Median 10dB Center Frequency [kHz] | 8.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (7.41 - 8.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4 (5.82 - 10.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 14) |
Time: 2024-09-16 00:48UTC to 2024-09-16 00:54UTC
Event contains 534 original clicks, 267 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 175 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.84 |
| Median 10dB Center Frequency [kHz] | 7.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (7.18 - 8.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (5.51 - 9.82) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-16 01:18UTC to 2024-09-16 01:24UTC
Event contains 614 original clicks, 307 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 236 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.02 |
| Median 10dB Center Frequency [kHz] | 7.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (7.17 - 8.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.04 (5.87 - 10.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 249) |
Time: 2024-09-16 01:24UTC to 2024-09-16 01:30UTC
Event contains 998 original clicks, 499 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 429 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.31 |
| Median 10dB Center Frequency [kHz] | 8.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (7.46 - 9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 (6.15 - 10) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-09-16 01:30UTC to 2024-09-16 01:36UTC
Event contains 738 original clicks, 369 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 267 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.83 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.32 - 7.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (4.75 - 9.21) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-16 01:36UTC to 2024-09-16 01:42UTC
Event contains 852 original clicks, 426 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 402 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.64 |
| Median 10dB Center Frequency [kHz] | 7.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (6.74 - 8.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.87 (4.35 - 10.4) |
| Median duration [μs] (25-75 percentile) | 421 (100 - 1033) |
Time: 2024-09-16 02:00UTC to 2024-09-16 02:06UTC
Event contains 812 original clicks, 406 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 347 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 7.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.83 - 8.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.11 (5.27 - 10.3) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 357) |
Time: 2024-09-16 02:06UTC to 2024-09-16 02:12UTC
Event contains 730 original clicks, 365 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 317 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.09 |
| Median 10dB Center Frequency [kHz] | 8.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (7.39 - 8.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 ( 6.3 - 9.73) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 206) |
Time: 2024-09-16 02:36UTC to 2024-09-16 02:42UTC
Event contains 776 original clicks, 388 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 314 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.42 |
| Median 10dB Center Frequency [kHz] | 6.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (5.61 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.85 (3.91 - 9.17) |
| Median duration [μs] (25-75 percentile) | 80 (0 - 396) |
Time: 2024-09-16 02:42UTC to 2024-09-16 02:48UTC
Event contains 640 original clicks, 320 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 241 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.53 |
| Median 10dB Center Frequency [kHz] | 8.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (7.72 - 9.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (5.92 - 10.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 39) |
Time: 2024-09-16 02:48UTC to 2024-09-16 02:54UTC
Event contains 902 original clicks, 451 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 383 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.75 |
| Median 10dB Center Frequency [kHz] | 7.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 ( 7.1 - 8.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (5.54 - 9.68) |
| Median duration [μs] (25-75 percentile) | 107 (0 - 1000) |
Time: 2024-09-16 02:54UTC to 2024-09-16 03:00UTC
Event contains 1132 original clicks, 566 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 512 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 7.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.62 (6.89 - 8.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.35 ( 5 - 9.94) |
| Median duration [μs] (25-75 percentile) | 332 (0 - 1766) |
Time: 2024-09-16 03:00UTC to 2024-09-16 03:06UTC
Event contains 1284 original clicks, 642 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 570 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.03 |
| Median 10dB Center Frequency [kHz] | 7.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (7.24 - 8.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.28 (5.65 - 9.86) |
| Median duration [μs] (25-75 percentile) | 265 (0 - 1000) |
Time: 2024-09-16 03:06UTC to 2024-09-16 03:12UTC
Event contains 988 original clicks, 494 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 455 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.65 |
| Median 10dB Center Frequency [kHz] | 7.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (7.14 - 8.21) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.93 ( 5.7 - 9.41) |
| Median duration [μs] (25-75 percentile) | 401 (0 - 1111) |
Time: 2024-09-16 03:12UTC to 2024-09-16 03:18UTC
Event contains 1212 original clicks, 606 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 575 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.56 |
| Median 10dB Center Frequency [kHz] | 7.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 ( 7 - 8.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (5.75 - 9.37) |
| Median duration [μs] (25-75 percentile) | 29 (0 - 1000) |
Time: 2024-09-16 03:18UTC to 2024-09-16 03:24UTC
Event contains 1112 original clicks, 556 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 517 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.48 |
| Median 10dB Center Frequency [kHz] | 7.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (6.58 - 8.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.74 (4.97 - 9.96) |
| Median duration [μs] (25-75 percentile) | 60 (0 - 1000) |
Time: 2024-09-16 03:48UTC to 2024-09-16 03:54UTC
Event contains 952 original clicks, 476 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 437 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.84 |
| Median 10dB Center Frequency [kHz] | 7.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (7.06 - 8.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (5.49 - 10.1) |
| Median duration [μs] (25-75 percentile) | 287 (0 - 1000) |
Time: 2024-09-16 03:54UTC to 2024-09-16 04:00UTC
Event contains 906 original clicks, 453 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 410 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.63 |
| Median 10dB Center Frequency [kHz] | 7.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 ( 6.9 - 8.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (5.61 - 9.75) |
| Median duration [μs] (25-75 percentile) | 196 (0 - 448) |
Time: 2024-09-16 04:00UTC to 2024-09-16 04:06UTC
Event contains 1000 original clicks, 500 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 433 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.91 |
| Median 10dB Center Frequency [kHz] | 7.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (7.19 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 (5.85 - 9.68) |
| Median duration [μs] (25-75 percentile) | 7.8 (0 - 232) |
Time: 2024-09-16 04:06UTC to 2024-09-16 04:12UTC
Event contains 952 original clicks, 476 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 433 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 7.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.83 - 8.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 (5.63 - 9.45) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-16 04:12UTC to 2024-09-16 04:18UTC
Event contains 1064 original clicks, 532 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 465 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.72 |
| Median 10dB Center Frequency [kHz] | 7.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.95 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.17 (5.24 - 9.92) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-16 04:18UTC to 2024-09-16 04:24UTC
Event contains 1060 original clicks, 530 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 477 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.18 |
| Median 10dB Center Frequency [kHz] | 8.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 ( 7.3 - 9.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.18 (5.78 - 10.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 224) |
Time: 2024-09-16 04:24UTC to 2024-09-16 04:30UTC
Event contains 938 original clicks, 469 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 429 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.1 |
| Median 10dB Center Frequency [kHz] | 8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (7.24 - 8.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.11 (5.31 - 10.1) |
| Median duration [μs] (25-75 percentile) | 104 (0 - 1000) |
Time: 2024-09-16 04:30UTC to 2024-09-16 04:36UTC
Event contains 1086 original clicks, 543 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 479 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.72 |
| Median 10dB Center Frequency [kHz] | 7.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (7.06 - 8.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (5.36 - 10) |
| Median duration [μs] (25-75 percentile) | 76 (0 - 353) |
Time: 2024-09-16 18:42UTC to 2024-09-16 18:48UTC
Event contains 498 original clicks, 249 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 149 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.06 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.27 - 6.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (3.87 - 8.32) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-16 18:48UTC to 2024-09-16 18:54UTC
Event contains 634 original clicks, 317 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 217 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 ( 5.6 - 7.22) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 (4.24 - 8.19) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 240) |
Time: 2024-09-16 18:54UTC to 2024-09-16 19:00UTC
Event contains 488 original clicks, 244 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 176 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.58 |
| Median 10dB Center Frequency [kHz] | 7.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.69 - 8.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.45 (5.32 - 9.54) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-16 19:42UTC to 2024-09-16 19:48UTC
Event contains 852 original clicks, 426 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 378 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.65 |
| Median 10dB Center Frequency [kHz] | 6.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.99 - 7.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.08 (4.73 - 8.49) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 404) |
Time: 2024-09-16 19:48UTC to 2024-09-16 19:54UTC
Event contains 1096 original clicks, 548 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 476 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.49 - 7.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (4.57 - 8.64) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 169) |
Time: 2024-09-16 19:54UTC to 2024-09-16 20:00UTC
Event contains 848 original clicks, 424 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 356 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.91 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.31 - 7.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.29 (5.01 - 8.9) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 123) |
Time: 2024-09-16 20:00UTC to 2024-09-16 20:06UTC
Event contains 834 original clicks, 417 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 339 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.83 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.95 - 7.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.96 (4.63 - 8.87) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 33) |
Time: 2024-09-16 20:06UTC to 2024-09-16 20:12UTC
Event contains 1078 original clicks, 539 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 473 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.2 |
| Median 10dB Center Frequency [kHz] | 7.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.57 - 7.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.88 (4.82 - 9.69) |
| Median duration [μs] (25-75 percentile) | 214 (0 - 1309) |
Time: 2024-09-16 20:12UTC to 2024-09-16 20:18UTC
Event contains 1088 original clicks, 544 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 473 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 7.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.58 - 7.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.67 (5.16 - 9.06) |
| Median duration [μs] (25-75 percentile) | 47 (0 - 1000) |
Time: 2024-09-16 20:18UTC to 2024-09-16 20:24UTC
Event contains 1300 original clicks, 650 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 583 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.8 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (5.88 - 7.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.93 ( 4.5 - 9.68) |
| Median duration [μs] (25-75 percentile) | 276 (0 - 1000) |
Time: 2024-09-16 20:24UTC to 2024-09-16 20:30UTC
Event contains 1042 original clicks, 521 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 453 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 7.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 ( 6.4 - 7.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.47 (4.85 - 9.6) |
| Median duration [μs] (25-75 percentile) | 39 (0 - 373) |
Time: 2024-09-16 20:48UTC to 2024-09-16 20:54UTC
Event contains 710 original clicks, 355 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 293 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.96 |
| Median 10dB Center Frequency [kHz] | 7.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (7.23 - 8.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (5.62 - 10.1) |
| Median duration [μs] (25-75 percentile) | 96 (0 - 355) |
Time: 2024-09-16 20:54UTC to 2024-09-16 21:00UTC
Event contains 1534 original clicks, 767 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 684 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.66 |
| Median 10dB Center Frequency [kHz] | 7.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.88 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.58 (5.13 - 10.1) |
| Median duration [μs] (25-75 percentile) | 269 (0 - 1000) |
Time: 2024-09-16 21:00UTC to 2024-09-16 21:06UTC
Event contains 1742 original clicks, 871 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 763 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 7.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (7.03 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.17 (5.13 - 10.1) |
| Median duration [μs] (25-75 percentile) | 201 (0 - 1000) |
Time: 2024-09-16 21:06UTC to 2024-09-16 21:12UTC
Event contains 2990 original clicks, 1495 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1202 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.31 |
| Median 10dB Center Frequency [kHz] | 7.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.66 - 8.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.28 ( 4.9 - 9.85) |
| Median duration [μs] (25-75 percentile) | 43 (0 - 1000) |
Time: 2024-09-16 21:12UTC to 2024-09-16 21:18UTC
Event contains 2322 original clicks, 1161 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 961 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.39 |
| Median 10dB Center Frequency [kHz] | 7.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (6.48 - 8.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.47 (4.53 - 9.71) |
| Median duration [μs] (25-75 percentile) | 102 (0 - 404) |
Time: 2024-09-16 21:18UTC to 2024-09-16 21:24UTC
Event contains 2146 original clicks, 1073 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 817 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.2 |
| Median 10dB Center Frequency [kHz] | 7.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.39 - 8.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.21 ( 4.9 - 9.6) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 284) |
Time: 2024-09-16 21:24UTC to 2024-09-16 21:30UTC
Event contains 1768 original clicks, 884 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 689 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.58 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.03 (5.21 - 8.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.32 (3.91 - 9.79) |
| Median duration [μs] (25-75 percentile) | 216 (0 - 1000) |
Time: 2024-09-16 21:30UTC to 2024-09-16 21:36UTC
Event contains 1466 original clicks, 733 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 633 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.95 |
| Median 10dB Center Frequency [kHz] | 8.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.68 (7.13 - 8.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.55 (5.75 - 10.8) |
| Median duration [μs] (25-75 percentile) | 201 (8 - 428) |
Time: 2024-09-16 21:48UTC to 2024-09-16 21:54UTC
Event contains 534 original clicks, 267 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 182 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.62 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.87 - 7.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 (4.79 - 8.47) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 48) |
Time: 2024-09-16 21:54UTC to 2024-09-16 22:00UTC
Event contains 1412 original clicks, 706 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 630 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.62 |
| Median 10dB Center Frequency [kHz] | 8.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (7.88 - 9.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.13 (6.56 - 10.5) |
| Median duration [μs] (25-75 percentile) | 94 (0 - 386) |
Time: 2024-09-16 22:00UTC to 2024-09-16 22:06UTC
Event contains 1942 original clicks, 971 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 808 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.06 |
| Median 10dB Center Frequency [kHz] | 7.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (7.46 - 8.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.89 (5.65 - 10) |
| Median duration [μs] (25-75 percentile) | 30 (0 - 1000) |
Time: 2024-09-16 22:06UTC to 2024-09-16 22:12UTC
Event contains 1720 original clicks, 860 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 730 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (5.42 - 7.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.2 (4.11 - 9.37) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 279) |
Time: 2024-09-16 22:12UTC to 2024-09-16 22:18UTC
Event contains 1726 original clicks, 863 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 694 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.45 |
| Median 10dB Center Frequency [kHz] | 7.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (6.59 - 8.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.56 (4.54 - 9.89) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 237) |
Time: 2024-09-16 22:18UTC to 2024-09-16 22:24UTC
Event contains 1518 original clicks, 759 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 630 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.38 |
| Median 10dB Center Frequency [kHz] | 7.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (6.35 - 8.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.5 (4.28 - 9.7) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 392) |
Time: 2024-09-16 22:24UTC to 2024-09-16 22:30UTC
Event contains 1988 original clicks, 994 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 806 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.42 |
| Median 10dB Center Frequency [kHz] | 7.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 (6.69 - 8.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.35 (4.93 - 9.93) |
| Median duration [μs] (25-75 percentile) | 44 (0 - 297) |
Time: 2024-09-16 22:30UTC to 2024-09-16 22:36UTC
Event contains 2334 original clicks, 1167 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 947 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.72 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (5.79 - 7.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.73 (4.23 - 9.39) |
| Median duration [μs] (25-75 percentile) | 65 (0 - 266) |
Time: 2024-09-16 22:36UTC to 2024-09-16 22:42UTC
Event contains 1972 original clicks, 986 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 795 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.43 |
| Median 10dB Center Frequency [kHz] | 6.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (5.74 - 7.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (4.43 - 8.72) |
| Median duration [μs] (25-75 percentile) | 50 (0 - 407) |
Time: 2024-09-16 22:42UTC to 2024-09-16 22:48UTC
Event contains 1006 original clicks, 503 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 454 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.13 |
| Median 10dB Center Frequency [kHz] | 7.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (6.26 - 7.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.32 (4.72 - 9.99) |
| Median duration [μs] (25-75 percentile) | 301 (0 - 1022) |
Time: 2024-09-16 22:48UTC to 2024-09-16 22:54UTC
Event contains 1220 original clicks, 610 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 522 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.11 |
| Median 10dB Center Frequency [kHz] | 7.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.45 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (4.97 - 9.43) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 1000) |
Time: 2024-09-16 22:54UTC to 2024-09-16 23:00UTC
Event contains 844 original clicks, 422 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 361 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.83 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.16 - 7.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.91 (4.81 - 9.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 375) |
Time: 2024-09-16 23:00UTC to 2024-09-16 23:06UTC
Event contains 1592 original clicks, 796 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 684 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.26 |
| Median 10dB Center Frequency [kHz] | 7.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (6.39 - 8.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (5.19 - 9.4) |
| Median duration [μs] (25-75 percentile) | 248 (0 - 1000) |
Time: 2024-09-16 23:06UTC to 2024-09-16 23:12UTC
Event contains 2472 original clicks, 1236 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1054 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.96 |
| Median 10dB Center Frequency [kHz] | 6.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.05 - 7.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.14 (4.18 - 9.23) |
| Median duration [μs] (25-75 percentile) | 73 (0 - 495) |
Time: 2024-09-16 23:12UTC to 2024-09-16 23:18UTC
Event contains 1372 original clicks, 686 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 546 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.71 |
| Median 10dB Center Frequency [kHz] | 7.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (6.94 - 8.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.58 (4.96 - 10.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 228) |
Time: 2024-09-16 23:18UTC to 2024-09-16 23:24UTC
Event contains 1056 original clicks, 528 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 482 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.34 |
| Median 10dB Center Frequency [kHz] | 7.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (5.36 - 7.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.93 (3.78 - 9.6) |
| Median duration [μs] (25-75 percentile) | 185 (0 - 461) |
Time: 2024-09-16 23:24UTC to 2024-09-16 23:30UTC
Event contains 968 original clicks, 484 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 432 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 ( 5.6 - 7.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (4.09 - 8.98) |
| Median duration [μs] (25-75 percentile) | 53 (0 - 323) |
Time: 2024-09-16 23:30UTC to 2024-09-16 23:36UTC
Event contains 1196 original clicks, 598 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 533 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.15 |
| Median 10dB Center Frequency [kHz] | 6.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (4.74 - 7.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.41 (3.68 - 9.33) |
| Median duration [μs] (25-75 percentile) | 271 (0 - 2299) |
Time: 2024-09-16 23:36UTC to 2024-09-16 23:42UTC
Event contains 1484 original clicks, 742 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 645 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.86 |
| Median 10dB Center Frequency [kHz] | 7.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (5.98 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.81 (3.95 - 9.74) |
| Median duration [μs] (25-75 percentile) | 5.2 (0 - 235) |
Time: 2024-09-16 23:42UTC to 2024-09-16 23:48UTC
Event contains 1428 original clicks, 714 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 623 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.76 |
| Median 10dB Center Frequency [kHz] | 6.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 ( 5.9 - 7.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.22 (4.03 - 9.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 203) |
Time: 2024-09-16 23:48UTC to 2024-09-16 23:54UTC
Event contains 1558 original clicks, 779 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 653 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.64 |
| Median 10dB Center Frequency [kHz] | 7.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.81 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (5.51 - 9.97) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 188) |
Time: 2024-09-16 23:54UTC to 2024-09-17 00:00UTC
Event contains 2246 original clicks, 1123 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1062 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.8 |
| Median 3dB Center Frequency [kHz] | 7.69 |
| Median 10dB Center Frequency [kHz] | 7.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (6.88 - 8.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.19 (5.23 - 10) |
| Median duration [μs] (25-75 percentile) | 199 (0 - 1000) |
Time: 2024-09-17 00:00UTC to 2024-09-17 00:06UTC
Event contains 2182 original clicks, 1091 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 998 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.29 |
| Median 10dB Center Frequency [kHz] | 7.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.61 - 8.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.38 (5.46 - 9.16) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 263) |
Time: 2024-09-17 00:06UTC to 2024-09-17 00:12UTC
Event contains 2264 original clicks, 1132 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1014 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.89 |
| Median 10dB Center Frequency [kHz] | 7.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.22 - 7.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 (4.69 - 9.39) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 271) |
Time: 2024-09-17 00:12UTC to 2024-09-17 00:18UTC
Event contains 2888 original clicks, 1444 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1254 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.01 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (6.15 - 7.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.78 ( 4.4 - 9.73) |
| Median duration [μs] (25-75 percentile) | 109 (0 - 1000) |
Time: 2024-09-17 00:18UTC to 2024-09-17 00:24UTC
Event contains 3148 original clicks, 1574 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1427 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 7.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (6.11 - 7.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.06 (4.31 - 9.88) |
| Median duration [μs] (25-75 percentile) | 321 (100 - 1114) |
Time: 2024-09-17 00:24UTC to 2024-09-17 00:30UTC
Event contains 2806 original clicks, 1403 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1238 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.11 |
| Median 10dB Center Frequency [kHz] | 7.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.28 - 8.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.73 (4.32 - 9.84) |
| Median duration [μs] (25-75 percentile) | 185 (0 - 1000) |
Time: 2024-09-17 00:42UTC to 2024-09-17 00:48UTC
Event contains 900 original clicks, 450 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 328 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.59 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (6.99 - 8.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (5.42 - 9.77) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 00:48UTC to 2024-09-17 00:54UTC
Event contains 2970 original clicks, 1485 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1281 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.38 |
| Median 10dB Center Frequency [kHz] | 8.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (7.52 - 9.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.62 (5.68 - 11.1) |
| Median duration [μs] (25-75 percentile) | 99 (0 - 399) |
Time: 2024-09-17 00:54UTC to 2024-09-17 01:00UTC
Event contains 3564 original clicks, 1782 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1627 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.42 |
| Median 10dB Center Frequency [kHz] | 8.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (7.46 - 9.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.85 ( 5.4 - 11.2) |
| Median duration [μs] (25-75 percentile) | 216 (0 - 1000) |
Time: 2024-09-17 01:00UTC to 2024-09-17 01:06UTC
Event contains 4192 original clicks, 2096 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1908 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.55 |
| Median 10dB Center Frequency [kHz] | 8.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (7.77 - 9.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.36 ( 5.8 - 11.2) |
| Median duration [μs] (25-75 percentile) | 224 (0 - 1212) |
Time: 2024-09-17 01:06UTC to 2024-09-17 01:12UTC
Event contains 4088 original clicks, 2044 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1857 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.93 |
| Median 10dB Center Frequency [kHz] | 8.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (7.11 - 8.78) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.61 (5.33 - 10.6) |
| Median duration [μs] (25-75 percentile) | 52 (0 - 1000) |
Time: 2024-09-17 01:12UTC to 2024-09-17 01:18UTC
Event contains 4240 original clicks, 2120 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1938 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.46 |
| Median 10dB Center Frequency [kHz] | 8.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (7.55 - 9.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.6 (5.66 - 11.3) |
| Median duration [μs] (25-75 percentile) | 284 (0 - 1000) |
Time: 2024-09-17 01:18UTC to 2024-09-17 01:24UTC
Event contains 3456 original clicks, 1728 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1580 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.89 |
| Median 10dB Center Frequency [kHz] | 7.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (7.18 - 8.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.97 (5.59 - 10.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-09-17 01:24UTC to 2024-09-17 01:30UTC
Event contains 2080 original clicks, 1040 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 863 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 8.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (7.08 - 8.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.23 (5.35 - 10.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 328) |
Time: 2024-09-17 01:30UTC to 2024-09-17 01:36UTC
Event contains 2148 original clicks, 1074 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 900 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.25 |
| Median 10dB Center Frequency [kHz] | 7.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (7.48 - 8.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.06 (4.77 - 10.3) |
| Median duration [μs] (25-75 percentile) | 214 (0 - 1000) |
Time: 2024-09-17 01:36UTC to 2024-09-17 01:42UTC
Event contains 1936 original clicks, 968 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 818 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 8.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (7.13 - 8.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.03 (5.68 - 10.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 153) |
Time: 2024-09-17 01:42UTC to 2024-09-17 01:48UTC
Event contains 2516 original clicks, 1258 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1126 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.29 |
| Median 10dB Center Frequency [kHz] | 8.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (7.54 - 9.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (6.21 - 10.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1019) |
Time: 2024-09-17 01:48UTC to 2024-09-17 01:54UTC
Event contains 2338 original clicks, 1169 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1036 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.64 |
| Median 10dB Center Frequency [kHz] | 8.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 ( 7.7 - 9.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.03 ( 6 - 11) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-09-17 01:54UTC to 2024-09-17 02:00UTC
Event contains 2190 original clicks, 1095 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 947 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 9.02 |
| Median 10dB Center Frequency [kHz] | 8.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (8.18 - 9.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.75 (6.21 - 11.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-09-17 02:00UTC to 2024-09-17 02:06UTC
Event contains 2922 original clicks, 1461 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1357 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.63 |
| Median 10dB Center Frequency [kHz] | 8.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (7.71 - 9.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.97 (5.71 - 10.8) |
| Median duration [μs] (25-75 percentile) | 57 (0 - 1142) |
Time: 2024-09-17 02:06UTC to 2024-09-17 02:12UTC
Event contains 3572 original clicks, 1786 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1608 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.39 |
| Median 10dB Center Frequency [kHz] | 8.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (7.54 - 9.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.14 (5.75 - 10.9) |
| Median duration [μs] (25-75 percentile) | 66 (0 - 1000) |
Time: 2024-09-17 02:12UTC to 2024-09-17 02:18UTC
Event contains 3386 original clicks, 1693 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1515 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.14 |
| Median 10dB Center Frequency [kHz] | 8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (7.19 - 8.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.13 (5.03 - 10.2) |
| Median duration [μs] (25-75 percentile) | 138 (0 - 1000) |
Time: 2024-09-17 02:18UTC to 2024-09-17 02:24UTC
Event contains 2404 original clicks, 1202 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 974 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.09 |
| Median 10dB Center Frequency [kHz] | 8.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.72 ( 7 - 8.99) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.66 (4.54 - 11.4) |
| Median duration [μs] (25-75 percentile) | 34 (0 - 214) |
Time: 2024-09-17 02:24UTC to 2024-09-17 02:30UTC
Event contains 1988 original clicks, 994 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 890 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.8 |
| Median 10dB Center Frequency [kHz] | 7.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.81 (6.74 - 8.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.05 (4.42 - 10.9) |
| Median duration [μs] (25-75 percentile) | 201 (0 - 1000) |
Time: 2024-09-17 02:30UTC to 2024-09-17 02:36UTC
Event contains 1158 original clicks, 579 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 482 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.58 |
| Median 10dB Center Frequency [kHz] | 7.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.83 - 8.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (4.86 - 9.92) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 179) |
Time: 2024-09-17 02:36UTC to 2024-09-17 02:42UTC
Event contains 1820 original clicks, 910 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 770 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.22 |
| Median 10dB Center Frequency [kHz] | 7.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (6.29 - 8.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.72 (4.31 - 9.83) |
| Median duration [μs] (25-75 percentile) | 112 (0 - 441) |
Time: 2024-09-17 02:42UTC to 2024-09-17 02:48UTC
Event contains 3380 original clicks, 1690 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1542 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 7.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.58 (6.53 - 8.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.1 (4.66 - 10.4) |
| Median duration [μs] (25-75 percentile) | 368 (100 - 1000) |
Time: 2024-09-17 02:48UTC to 2024-09-17 02:54UTC
Event contains 3042 original clicks, 1521 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1365 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8 |
| Median 10dB Center Frequency [kHz] | 8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.58 ( 6.9 - 9.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.83 (4.46 - 10.8) |
| Median duration [μs] (25-75 percentile) | 120 (0 - 441) |
Time: 2024-09-17 02:54UTC to 2024-09-17 03:00UTC
Event contains 1826 original clicks, 913 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 830 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.26 |
| Median 10dB Center Frequency [kHz] | 7.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.69 (6.37 - 8.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.86 (3.68 - 10.1) |
| Median duration [μs] (25-75 percentile) | 253 (29 - 1000) |
Time: 2024-09-17 03:00UTC to 2024-09-17 03:06UTC
Event contains 1416 original clicks, 708 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 628 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 6.39 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.69 ( 5.7 - 7.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.69 (3.69 - 9.76) |
| Median duration [μs] (25-75 percentile) | 246 (21 - 1000) |
Time: 2024-09-17 03:12UTC to 2024-09-17 03:18UTC
Event contains 1856 original clicks, 928 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 802 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.68 |
| Median 10dB Center Frequency [kHz] | 7.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (6.76 - 8.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.29 (4.53 - 10.2) |
| Median duration [μs] (25-75 percentile) | 13 (0 - 198) |
Time: 2024-09-17 03:18UTC to 2024-09-17 03:24UTC
Event contains 1520 original clicks, 760 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 696 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.8 |
| Median 10dB Center Frequency [kHz] | 7.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.69 (6.85 - 8.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.7 (4.86 - 10.5) |
| Median duration [μs] (25-75 percentile) | 65 (0 - 237) |
Time: 2024-09-17 03:24UTC to 2024-09-17 03:30UTC
Event contains 1386 original clicks, 693 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 592 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.51 |
| Median 10dB Center Frequency [kHz] | 7.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (6.52 - 8.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.84 (4.39 - 9.97) |
| Median duration [μs] (25-75 percentile) | 65 (0 - 422) |
Time: 2024-09-17 03:36UTC to 2024-09-17 03:42UTC
Event contains 1306 original clicks, 653 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 522 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.12 |
| Median 10dB Center Frequency [kHz] | 7.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (6.26 - 8.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.55 (4.25 - 9.84) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 162) |
Time: 2024-09-17 03:42UTC to 2024-09-17 03:48UTC
Event contains 2082 original clicks, 1041 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 963 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.8 |
| Median 10dB Center Frequency [kHz] | 7.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (5.84 - 7.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.4 ( 4 - 9.52) |
| Median duration [μs] (25-75 percentile) | 203 (0 - 1000) |
Time: 2024-09-17 03:48UTC to 2024-09-17 03:54UTC
Event contains 2168 original clicks, 1084 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 974 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.71 |
| Median 10dB Center Frequency [kHz] | 7.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (5.81 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.99 (4.31 - 9.53) |
| Median duration [μs] (25-75 percentile) | 86 (0 - 1000) |
Time: 2024-09-17 03:54UTC to 2024-09-17 04:00UTC
Event contains 1726 original clicks, 863 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 728 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.11 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.15 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 (4.46 - 9.44) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 181) |
Time: 2024-09-17 04:00UTC to 2024-09-17 04:06UTC
Event contains 1632 original clicks, 816 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 653 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.17 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 ( 4.1 - 8.09) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 289) |
Time: 2024-09-17 06:48UTC to 2024-09-17 06:54UTC
Event contains 434 original clicks, 217 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 115 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.75 - 6.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 (4.78 - 8.13) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 11:24UTC to 2024-09-17 11:30UTC
Event contains 644 original clicks, 322 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 227 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.93 - 7.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 (4.75 - 8.52) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 218) |
Time: 2024-09-17 13:30UTC to 2024-09-17 13:36UTC
Event contains 712 original clicks, 356 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 276 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.03 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.37 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.16 (4.47 - 8.25) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 340) |
Time: 2024-09-17 13:42UTC to 2024-09-17 13:48UTC
Event contains 1156 original clicks, 578 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 451 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.35 |
| Median 10dB Center Frequency [kHz] | 6.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 ( 5.7 - 7.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (4.51 - 8.14) |
| Median duration [μs] (25-75 percentile) | 151 (0 - 1000) |
Time: 2024-09-17 13:48UTC to 2024-09-17 13:54UTC
Event contains 2502 original clicks, 1251 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1178 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.24 |
| Median 10dB Center Frequency [kHz] | 8.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (7.41 - 9.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.59 (5.69 - 10.7) |
| Median duration [μs] (25-75 percentile) | 550 (0 - 2372) |
Time: 2024-09-17 13:54UTC to 2024-09-17 14:00UTC
Event contains 2452 original clicks, 1226 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1118 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.7 |
| Median 10dB Center Frequency [kHz] | 8.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (7.96 - 9.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.94 (6.12 - 11) |
| Median duration [μs] (25-75 percentile) | 57 (0 - 1000) |
Time: 2024-09-17 14:00UTC to 2024-09-17 14:06UTC
Event contains 2756 original clicks, 1378 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1263 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.99 |
| Median 10dB Center Frequency [kHz] | 8.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (7.21 - 8.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (5.65 - 10.3) |
| Median duration [μs] (25-75 percentile) | 86 (0 - 1000) |
Time: 2024-09-17 14:06UTC to 2024-09-17 14:12UTC
Event contains 2062 original clicks, 1031 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 939 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.21 |
| Median 10dB Center Frequency [kHz] | 9.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (8.26 - 10.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.04 (5.74 - 11.8) |
| Median duration [μs] (25-75 percentile) | 550 (0 - 1481) |
Time: 2024-09-17 14:12UTC to 2024-09-17 14:18UTC
Event contains 1998 original clicks, 999 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 876 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.69 |
| Median 10dB Center Frequency [kHz] | 8.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (7.86 - 9.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.24 (5.91 - 11.1) |
| Median duration [μs] (25-75 percentile) | 188 (0 - 1000) |
Time: 2024-09-17 14:18UTC to 2024-09-17 14:24UTC
Event contains 1518 original clicks, 759 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 629 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.21 |
| Median 10dB Center Frequency [kHz] | 7.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.63 (5.99 - 8.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.82 ( 4.3 - 10.5) |
| Median duration [μs] (25-75 percentile) | 430 (0 - 1103) |
Time: 2024-09-17 14:24UTC to 2024-09-17 14:30UTC
Event contains 916 original clicks, 458 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 413 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.93 |
| Median 10dB Center Frequency [kHz] | 8.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 (7.91 - 9.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.26 (6.15 - 11.4) |
| Median duration [μs] (25-75 percentile) | 175 (0 - 1000) |
Time: 2024-09-17 14:30UTC to 2024-09-17 14:36UTC
Event contains 854 original clicks, 427 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 358 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.91 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (6.26 - 7.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 (5.36 - 8.92) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 249) |
Time: 2024-09-17 14:36UTC to 2024-09-17 14:42UTC
Event contains 938 original clicks, 469 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 422 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.02 |
| Median 10dB Center Frequency [kHz] | 7.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (6.18 - 7.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.92 ( 5 - 9.21) |
| Median duration [μs] (25-75 percentile) | 374 (0 - 1623) |
Time: 2024-09-17 14:42UTC to 2024-09-17 14:48UTC
Event contains 1932 original clicks, 966 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 891 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.89 |
| Median 10dB Center Frequency [kHz] | 7.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (7.01 - 8.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.35 (4.87 - 10.3) |
| Median duration [μs] (25-75 percentile) | 201 (0 - 1000) |
Time: 2024-09-17 14:48UTC to 2024-09-17 14:54UTC
Event contains 2026 original clicks, 1013 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 930 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.94 |
| Median 10dB Center Frequency [kHz] | 7.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.06 - 7.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.59 ( 4.6 - 9.81) |
| Median duration [μs] (25-75 percentile) | 407 (25 - 1000) |
Time: 2024-09-17 14:54UTC to 2024-09-17 15:00UTC
Event contains 1762 original clicks, 881 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 759 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.1 |
| Median 10dB Center Frequency [kHz] | 7.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 (6.22 - 8.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.54 (4.24 - 10.2) |
| Median duration [μs] (25-75 percentile) | 289 (0 - 1000) |
Time: 2024-09-17 15:00UTC to 2024-09-17 15:06UTC
Event contains 1562 original clicks, 781 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 735 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.59 |
| Median 10dB Center Frequency [kHz] | 7.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (5.94 - 7.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.96 (4.28 - 9.3) |
| Median duration [μs] (25-75 percentile) | 138 (0 - 1000) |
Time: 2024-09-17 15:06UTC to 2024-09-17 15:12UTC
Event contains 1998 original clicks, 999 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 928 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.79 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.01 - 7.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.86 (4.05 - 9.22) |
| Median duration [μs] (25-75 percentile) | 289 (0 - 1000) |
Time: 2024-09-17 15:12UTC to 2024-09-17 15:18UTC
Event contains 2250 original clicks, 1125 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1028 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.69 |
| Median 10dB Center Frequency [kHz] | 6.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (6.05 - 7.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.2 (4.54 - 8.64) |
| Median duration [μs] (25-75 percentile) | 96 (0 - 1000) |
Time: 2024-09-17 15:18UTC to 2024-09-17 15:24UTC
Event contains 990 original clicks, 495 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 451 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.2 |
| Median 10dB Center Frequency [kHz] | 6.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.52 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (4.16 - 8.33) |
| Median duration [μs] (25-75 percentile) | 407 (0 - 1000) |
Time: 2024-09-17 15:36UTC to 2024-09-17 15:42UTC
Event contains 800 original clicks, 400 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 349 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.28 |
| Median 10dB Center Frequency [kHz] | 7.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 ( 6.7 - 7.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 (4.92 - 9.5) |
| Median duration [μs] (25-75 percentile) | 128 (0 - 1000) |
Time: 2024-09-17 15:42UTC to 2024-09-17 15:48UTC
Event contains 910 original clicks, 455 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 356 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.17 |
| Median 10dB Center Frequency [kHz] | 7.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (7.56 - 8.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.74 (5.08 - 10.1) |
| Median duration [μs] (25-75 percentile) | 143 (0 - 1000) |
Time: 2024-09-17 15:48UTC to 2024-09-17 15:54UTC
Event contains 1372 original clicks, 686 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 553 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.49 |
| Median 10dB Center Frequency [kHz] | 7.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.99 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.16 (5.74 - 9.14) |
| Median duration [μs] (25-75 percentile) | 76 (0 - 1000) |
Time: 2024-09-17 15:54UTC to 2024-09-17 16:00UTC
Event contains 464 original clicks, 232 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 147 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.83 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (7.23 - 8.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (5.94 - 9.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 145) |
Time: 2024-09-17 16:00UTC to 2024-09-17 16:06UTC
Event contains 1234 original clicks, 617 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 523 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.88 |
| Median 10dB Center Frequency [kHz] | 6.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.24 - 7.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.72 (4.42 - 9.19) |
| Median duration [μs] (25-75 percentile) | 422 (33 - 1215) |
Time: 2024-09-17 16:06UTC to 2024-09-17 16:12UTC
Event contains 1152 original clicks, 576 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 480 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.28 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.52 - 7.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 (4.84 - 9.13) |
| Median duration [μs] (25-75 percentile) | 219 (0 - 1174) |
Time: 2024-09-17 16:12UTC to 2024-09-17 16:18UTC
Event contains 514 original clicks, 257 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 196 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (6.29 - 7.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.97 - 8.78) |
| Median duration [μs] (25-75 percentile) | 87 (0 - 1194) |
Time: 2024-09-17 16:24UTC to 2024-09-17 16:30UTC
Event contains 598 original clicks, 299 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 202 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.41 |
| Median 10dB Center Frequency [kHz] | 7.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.961 (6.77 - 8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.2 (5.69 - 9.38) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-17 16:30UTC to 2024-09-17 16:36UTC
Event contains 712 original clicks, 356 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 278 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.73 |
| Median 10dB Center Frequency [kHz] | 6.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.26 - 7.21) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.08 (4.85 - 8.38) |
| Median duration [μs] (25-75 percentile) | 100 (0 - 1051) |
Time: 2024-09-17 16:36UTC to 2024-09-17 16:42UTC
Event contains 860 original clicks, 430 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 367 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.1 |
| Median 10dB Center Frequency [kHz] | 6.66 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.49 - 6.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (4.13 - 9.18) |
| Median duration [μs] (25-75 percentile) | 498 (31 - 1182) |
Time: 2024-09-17 16:42UTC to 2024-09-17 16:48UTC
Event contains 1016 original clicks, 508 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 404 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.54 |
| Median 10dB Center Frequency [kHz] | 7.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.91 - 8.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (5.26 - 9.93) |
| Median duration [μs] (25-75 percentile) | 207 (0 - 1036) |
Time: 2024-09-17 16:48UTC to 2024-09-17 16:54UTC
Event contains 1088 original clicks, 544 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 479 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.81 |
| Median 10dB Center Frequency [kHz] | 6.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.12 - 7.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 ( 4.9 - 8.8) |
| Median duration [μs] (25-75 percentile) | 276 (23 - 1000) |
Time: 2024-09-17 16:54UTC to 2024-09-17 17:00UTC
Event contains 1792 original clicks, 896 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 781 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6 |
| Median 10dB Center Frequency [kHz] | 6.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.33 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 ( 4.2 - 8.34) |
| Median duration [μs] (25-75 percentile) | 850 (138 - 1663) |
Time: 2024-09-17 17:00UTC to 2024-09-17 17:06UTC
Event contains 972 original clicks, 486 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 446 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.78 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (7.15 - 8.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.04 (5.78 - 9.44) |
| Median duration [μs] (25-75 percentile) | 7.8 (0 - 468) |
Time: 2024-09-17 17:06UTC to 2024-09-17 17:12UTC
Event contains 676 original clicks, 338 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 311 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.87 |
| Median 10dB Center Frequency [kHz] | 7.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (7.18 - 8.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (5.79 - 9.88) |
| Median duration [μs] (25-75 percentile) | 193 (0 - 1000) |
Time: 2024-09-17 17:30UTC to 2024-09-17 17:36UTC
Event contains 1294 original clicks, 647 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 575 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.89 |
| Median 10dB Center Frequency [kHz] | 7.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (5.97 - 7.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (4.68 - 8.97) |
| Median duration [μs] (25-75 percentile) | 435 (31 - 1000) |
Time: 2024-09-17 17:36UTC to 2024-09-17 17:42UTC
Event contains 1260 original clicks, 630 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 576 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.4 |
| Median 10dB Center Frequency [kHz] | 7.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (6.61 - 7.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (4.91 - 9.73) |
| Median duration [μs] (25-75 percentile) | 159 (0 - 1000) |
Time: 2024-09-17 17:42UTC to 2024-09-17 17:48UTC
Event contains 1182 original clicks, 591 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 547 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.65 |
| Median 10dB Center Frequency [kHz] | 6.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 ( 5.7 - 7.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.01 ( 4.4 - 9.03) |
| Median duration [μs] (25-75 percentile) | 222 (22 - 1000) |
Time: 2024-09-17 17:48UTC to 2024-09-17 17:54UTC
Event contains 1074 original clicks, 537 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 483 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.6 |
| Median 10dB Center Frequency [kHz] | 7.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (7.05 - 8.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.95 (5.56 - 9.99) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 424) |
Time: 2024-09-17 17:54UTC to 2024-09-17 18:00UTC
Event contains 1458 original clicks, 729 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 665 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.38 |
| Median 10dB Center Frequency [kHz] | 7.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (6.29 - 8.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (4.68 - 10.3) |
| Median duration [μs] (25-75 percentile) | 759 (198 - 1921) |
Time: 2024-09-17 18:00UTC to 2024-09-17 18:06UTC
Event contains 1772 original clicks, 886 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 785 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.86 |
| Median 10dB Center Frequency [kHz] | 7.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (5.92 - 8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.11 (4.79 - 9.96) |
| Median duration [μs] (25-75 percentile) | 946 (196 - 1590) |
Time: 2024-09-17 18:06UTC to 2024-09-17 18:12UTC
Event contains 1446 original clicks, 723 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 638 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.85 |
| Median 10dB Center Frequency [kHz] | 7.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (6.97 - 8.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.3 (5.25 - 10.4) |
| Median duration [μs] (25-75 percentile) | 587 (16 - 1504) |
Time: 2024-09-17 18:12UTC to 2024-09-17 18:18UTC
Event contains 1626 original clicks, 813 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 751 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.96 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.24 - 7.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (4.68 - 9.16) |
| Median duration [μs] (25-75 percentile) | 576 (7 - 1216) |
Time: 2024-09-17 18:18UTC to 2024-09-17 18:24UTC
Event contains 1796 original clicks, 898 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 756 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.49 |
| Median 10dB Center Frequency [kHz] | 8.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (6.71 - 8.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.38 (4.34 - 11.3) |
| Median duration [μs] (25-75 percentile) | 450 (100 - 1077) |
Time: 2024-09-17 18:36UTC to 2024-09-17 18:42UTC
Event contains 1440 original clicks, 720 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 574 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.8 |
| Median 3dB Center Frequency [kHz] | 7.81 |
| Median 10dB Center Frequency [kHz] | 7.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (7.06 - 8.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 (5.46 - 9.62) |
| Median duration [μs] (25-75 percentile) | 72 (0 - 1000) |
Time: 2024-09-17 18:42UTC to 2024-09-17 18:48UTC
Event contains 2338 original clicks, 1169 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1093 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.9 |
| Median 10dB Center Frequency [kHz] | 7.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (7.13 - 8.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 (5.23 - 10) |
| Median duration [μs] (25-75 percentile) | 169 (0 - 1254) |
Time: 2024-09-17 18:48UTC to 2024-09-17 18:54UTC
Event contains 2358 original clicks, 1179 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1040 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.72 |
| Median 10dB Center Frequency [kHz] | 7.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (7.06 - 8.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.72 (5.43 - 9.88) |
| Median duration [μs] (25-75 percentile) | 56 (0 - 1000) |
Time: 2024-09-17 18:54UTC to 2024-09-17 19:00UTC
Event contains 2208 original clicks, 1104 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 941 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.72 |
| Median 10dB Center Frequency [kHz] | 7.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (6.91 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.95 (5.13 - 9.91) |
| Median duration [μs] (25-75 percentile) | 141 (0 - 1000) |
Time: 2024-09-17 19:00UTC to 2024-09-17 19:06UTC
Event contains 1704 original clicks, 852 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 702 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.8 |
| Median 10dB Center Frequency [kHz] | 6.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (5.57 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (3.94 - 9.78) |
| Median duration [μs] (25-75 percentile) | 227 (0 - 1092) |
Time: 2024-09-17 19:06UTC to 2024-09-17 19:12UTC
Event contains 1318 original clicks, 659 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 609 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 7.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.58 (5.81 - 8.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.27 ( 4.3 - 10.1) |
| Median duration [μs] (25-75 percentile) | 182 (0 - 1000) |
Time: 2024-09-17 19:12UTC to 2024-09-17 19:18UTC
Event contains 1478 original clicks, 739 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 646 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.87 |
| Median 10dB Center Frequency [kHz] | 8.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (6.79 - 8.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.17 (4.86 - 10.8) |
| Median duration [μs] (25-75 percentile) | 149 (0 - 1000) |
Time: 2024-09-17 19:18UTC to 2024-09-17 19:24UTC
Event contains 1006 original clicks, 503 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 454 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.39 |
| Median 10dB Center Frequency [kHz] | 7.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.34 - 8.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.95 (4.31 - 9.9) |
| Median duration [μs] (25-75 percentile) | 23 (0 - 351) |
Time: 2024-09-17 19:24UTC to 2024-09-17 19:30UTC
Event contains 1388 original clicks, 694 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 613 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.3 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.56 - 6.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (3.94 - 8.74) |
| Median duration [μs] (25-75 percentile) | 104 (0 - 1000) |
Time: 2024-09-17 19:48UTC to 2024-09-17 19:54UTC
Event contains 1260 original clicks, 630 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 568 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.42 |
| Median 10dB Center Frequency [kHz] | 7.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.55 - 8.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.39 (4.56 - 10.3) |
| Median duration [μs] (25-75 percentile) | 64 (0 - 390) |
Time: 2024-09-17 19:54UTC to 2024-09-17 20:00UTC
Event contains 1470 original clicks, 735 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 675 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.33 |
| Median 10dB Center Frequency [kHz] | 7.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (6.45 - 8.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.18 (4.15 - 10.6) |
| Median duration [μs] (25-75 percentile) | 279 (100 - 1000) |
Time: 2024-09-17 20:00UTC to 2024-09-17 20:06UTC
Event contains 1232 original clicks, 616 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 547 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.55 |
| Median 10dB Center Frequency [kHz] | 7.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (6.49 - 8.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.49 (4.55 - 10.1) |
| Median duration [μs] (25-75 percentile) | 63 (0 - 342) |
Time: 2024-09-17 20:06UTC to 2024-09-17 20:12UTC
Event contains 1142 original clicks, 571 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 522 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.4 |
| Median 10dB Center Frequency [kHz] | 7.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (6.55 - 8.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.04 (5.04 - 10.6) |
| Median duration [μs] (25-75 percentile) | 130 (0 - 1000) |
Time: 2024-09-17 20:12UTC to 2024-09-17 20:18UTC
Event contains 1174 original clicks, 587 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 543 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.61 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.64 ( 5.2 - 7.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.94 (3.56 - 9.79) |
| Median duration [μs] (25-75 percentile) | 198 (18 - 1000) |
Time: 2024-09-17 20:24UTC to 2024-09-17 20:30UTC
Event contains 1338 original clicks, 669 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 631 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.86 |
| Median 10dB Center Frequency [kHz] | 7.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (5.81 - 8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.59 (4.47 - 9.97) |
| Median duration [μs] (25-75 percentile) | 696 (102 - 1384) |
Time: 2024-09-17 20:30UTC to 2024-09-17 20:36UTC
Event contains 1024 original clicks, 512 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 470 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.27 |
| Median 10dB Center Frequency [kHz] | 7.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.79 (5.97 - 8.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.81 ( 3.9 - 10.8) |
| Median duration [μs] (25-75 percentile) | 176 (3 - 485) |
Time: 2024-09-17 20:36UTC to 2024-09-17 20:42UTC
Event contains 884 original clicks, 442 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 408 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.79 |
| Median 10dB Center Frequency [kHz] | 7.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (7.02 - 8.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.45 (5.39 - 9.61) |
| Median duration [μs] (25-75 percentile) | 47 (0 - 1000) |
Time: 2024-09-17 21:00UTC to 2024-09-17 21:06UTC
Event contains 1618 original clicks, 809 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 739 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.98 |
| Median 10dB Center Frequency [kHz] | 8.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (7.33 - 8.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.5 (5.82 - 9.9) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 441) |
Time: 2024-09-17 21:06UTC to 2024-09-17 21:12UTC
Event contains 1464 original clicks, 732 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 692 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.95 |
| Median 10dB Center Frequency [kHz] | 8.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (7.24 - 8.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.62 (5.54 - 10.7) |
| Median duration [μs] (25-75 percentile) | 169 (0 - 1000) |
Time: 2024-09-17 21:12UTC to 2024-09-17 21:18UTC
Event contains 1286 original clicks, 643 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 579 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.9 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.14 - 7.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (4.55 - 9.39) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 265) |
Time: 2024-09-17 21:18UTC to 2024-09-17 21:24UTC
Event contains 1368 original clicks, 684 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 607 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.96 - 7.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.24 (4.28 - 8.71) |
| Median duration [μs] (25-75 percentile) | 47 (0 - 468) |
Time: 2024-09-17 21:24UTC to 2024-09-17 21:30UTC
Event contains 1266 original clicks, 633 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 581 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.1 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.76 (5.03 - 7.22) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.48 (3.41 - 10.2) |
| Median duration [μs] (25-75 percentile) | 235 (29 - 1000) |
Time: 2024-09-17 21:30UTC to 2024-09-17 21:36UTC
Event contains 1532 original clicks, 766 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 697 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (5.38 - 6.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (3.93 - 9.43) |
| Median duration [μs] (25-75 percentile) | 274 (21 - 1000) |
Time: 2024-09-17 22:00UTC to 2024-09-17 22:06UTC
Event contains 858 original clicks, 429 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 377 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.34 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (6.79 - 7.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.87 (5.49 - 8.72) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-09-17 22:06UTC to 2024-09-17 22:12UTC
Event contains 1348 original clicks, 674 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 616 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 7.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (6.11 - 7.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (4.74 - 9.38) |
| Median duration [μs] (25-75 percentile) | 301 (0 - 1000) |
Time: 2024-09-17 22:12UTC to 2024-09-17 22:18UTC
Event contains 1168 original clicks, 584 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 525 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.2 |
| Median 10dB Center Frequency [kHz] | 7.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.63 - 7.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.3 (5.15 - 9.34) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 381) |
Time: 2024-09-17 22:18UTC to 2024-09-17 22:24UTC
Event contains 1732 original clicks, 866 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 795 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.37 |
| Median 10dB Center Frequency [kHz] | 7.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.55 - 8.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.37 (5.23 - 9.5) |
| Median duration [μs] (25-75 percentile) | 214 (0 - 1064) |
Time: 2024-09-17 22:24UTC to 2024-09-17 22:30UTC
Event contains 1344 original clicks, 672 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 625 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.85 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 ( 6.3 - 7.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 (4.74 - 9.44) |
| Median duration [μs] (25-75 percentile) | 125 (0 - 1000) |
Time: 2024-09-17 22:36UTC to 2024-09-17 22:42UTC
Event contains 1438 original clicks, 719 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 652 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (5.65 - 7.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.01 (4.25 - 8.91) |
| Median duration [μs] (25-75 percentile) | 9.1 (0 - 287) |
Time: 2024-09-17 22:42UTC to 2024-09-17 22:48UTC
Event contains 1056 original clicks, 528 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 445 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.62 |
| Median 10dB Center Frequency [kHz] | 6.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.98 - 7.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.31 (4.52 - 8.67) |
| Median duration [μs] (25-75 percentile) | 60 (0 - 1000) |
Time: 2024-09-17 23:12UTC to 2024-09-17 23:18UTC
Event contains 1080 original clicks, 540 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 463 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.38 |
| Median 10dB Center Frequency [kHz] | 7.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.69 - 8.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (5.06 - 9.52) |
| Median duration [μs] (25-75 percentile) | 26 (0 - 1000) |
Time: 2024-09-17 23:18UTC to 2024-09-17 23:24UTC
Event contains 1202 original clicks, 601 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 574 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.65 |
| Median 10dB Center Frequency [kHz] | 7.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (5.55 - 7.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.16 (4.06 - 10.2) |
| Median duration [μs] (25-75 percentile) | 219 (50 - 1000) |
Time: 2024-09-17 23:24UTC to 2024-09-17 23:30UTC
Event contains 1152 original clicks, 576 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 521 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.63 |
| Median 10dB Center Frequency [kHz] | 6.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (5.58 - 7.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.63 (3.91 - 9.07) |
| Median duration [μs] (25-75 percentile) | 52 (0 - 391) |
Time: 2024-09-17 23:30UTC to 2024-09-17 23:36UTC
Event contains 548 original clicks, 274 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 221 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.82 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 ( 6.2 - 7.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.78 (4.74 - 8.9) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-18 13:54UTC to 2024-09-18 14:00UTC
Event contains 538 original clicks, 269 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 207 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (6.26 - 7.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.29 (4.98 - 8.76) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 315) |
Time: 2024-09-18 14:00UTC to 2024-09-18 14:06UTC
Event contains 760 original clicks, 380 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 298 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.41 |
| Median 10dB Center Frequency [kHz] | 7.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (6.69 - 8.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (5.43 - 9.56) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 49) |
Time: 2024-09-18 14:06UTC to 2024-09-18 14:12UTC
Event contains 1318 original clicks, 659 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 557 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (5.43 - 6.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.24 (4.42 - 8.08) |
| Median duration [μs] (25-75 percentile) | 31 (0 - 255) |
Time: 2024-09-18 14:12UTC to 2024-09-18 14:18UTC
Event contains 910 original clicks, 455 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 360 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.78 |
| Median 10dB Center Frequency [kHz] | 7.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (7.01 - 8.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.86 (5.18 - 9.65) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 3) |
Time: 2024-09-18 14:18UTC to 2024-09-18 14:24UTC
Event contains 1118 original clicks, 559 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 476 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.8 |
| Median 3dB Center Frequency [kHz] | 7.81 |
| Median 10dB Center Frequency [kHz] | 7.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (7.11 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.75 (5.47 - 9.8) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 207) |
Time: 2024-09-18 14:24UTC to 2024-09-18 14:30UTC
Event contains 1994 original clicks, 997 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 888 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (5.54 - 7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.23 (3.77 - 8.92) |
| Median duration [μs] (25-75 percentile) | 407 (0 - 2108) |
Time: 2024-09-18 14:30UTC to 2024-09-18 14:36UTC
Event contains 3084 original clicks, 1542 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1436 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.29 |
| Median 10dB Center Frequency [kHz] | 7.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.42 - 8.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.62 (4.61 - 9.79) |
| Median duration [μs] (25-75 percentile) | 244 (0 - 1047) |
Time: 2024-09-18 14:36UTC to 2024-09-18 14:42UTC
Event contains 2206 original clicks, 1103 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1060 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.07 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.29 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (4.64 - 9.39) |
| Median duration [μs] (25-75 percentile) | 362 (5 - 1000) |
Time: 2024-09-18 14:42UTC to 2024-09-18 14:48UTC
Event contains 2518 original clicks, 1259 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1200 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.14 |
| Median 10dB Center Frequency [kHz] | 7.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 ( 6.3 - 7.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.91 (4.85 - 9.53) |
| Median duration [μs] (25-75 percentile) | 433 (0 - 1074) |
Time: 2024-09-18 14:48UTC to 2024-09-18 14:54UTC
Event contains 2328 original clicks, 1164 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1049 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.43 |
| Median 10dB Center Frequency [kHz] | 7.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (6.64 - 8.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.02 (4.59 - 10.4) |
| Median duration [μs] (25-75 percentile) | 216 (0 - 1000) |
Time: 2024-09-18 14:54UTC to 2024-09-18 15:00UTC
Event contains 2540 original clicks, 1270 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1206 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.45 |
| Median 10dB Center Frequency [kHz] | 7.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.68 - 8.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.64 (4.77 - 10.2) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 360) |
Time: 2024-09-18 15:00UTC to 2024-09-18 15:06UTC
Event contains 2724 original clicks, 1362 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1306 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.17 |
| Median 10dB Center Frequency [kHz] | 8.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.59 (7.22 - 9.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.18 (4.96 - 11) |
| Median duration [μs] (25-75 percentile) | 117 (0 - 373) |
Time: 2024-09-18 15:06UTC to 2024-09-18 15:12UTC
Event contains 1836 original clicks, 918 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 801 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.95 |
| Median 10dB Center Frequency [kHz] | 7.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (6.99 - 8.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.64 (4.96 - 10.8) |
| Median duration [μs] (25-75 percentile) | 86 (0 - 373) |
Time: 2024-09-18 15:12UTC to 2024-09-18 15:18UTC
Event contains 1908 original clicks, 954 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 921 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.33 |
| Median 10dB Center Frequency [kHz] | 9.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.67 (8.29 - 10.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.4 (6.16 - 11.7) |
| Median duration [μs] (25-75 percentile) | 151 (3 - 428) |
Time: 2024-09-18 15:18UTC to 2024-09-18 15:24UTC
Event contains 3344 original clicks, 1672 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1494 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.68 |
| Median 10dB Center Frequency [kHz] | 7.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (6.73 - 8.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.11 (4.65 - 10.5) |
| Median duration [μs] (25-75 percentile) | 73 (0 - 385) |
Time: 2024-09-18 15:24UTC to 2024-09-18 15:30UTC
Event contains 3994 original clicks, 1997 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1832 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.39 |
| Median 10dB Center Frequency [kHz] | 8.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (7.51 - 9.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.18 (5.53 - 11.2) |
| Median duration [μs] (25-75 percentile) | 173 (0 - 1000) |
Time: 2024-09-18 15:30UTC to 2024-09-18 15:36UTC
Event contains 5234 original clicks, 2617 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2423 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.6 |
| Median 10dB Center Frequency [kHz] | 7.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (6.76 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.79 (4.53 - 10.4) |
| Median duration [μs] (25-75 percentile) | 644 (48 - 1697) |
Time: 2024-09-18 15:36UTC to 2024-09-18 15:42UTC
Event contains 5444 original clicks, 2722 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2401 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.25 |
| Median 10dB Center Frequency [kHz] | 8.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (7.48 - 9.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.22 (5.73 - 10.7) |
| Median duration [μs] (25-75 percentile) | 112 (0 - 1014) |
Time: 2024-09-18 15:42UTC to 2024-09-18 15:48UTC
Event contains 4644 original clicks, 2322 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2111 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.82 |
| Median 10dB Center Frequency [kHz] | 7.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (7.06 - 8.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.3 (5.33 - 10.4) |
| Median duration [μs] (25-75 percentile) | 120 (0 - 1000) |
Time: 2024-09-18 15:48UTC to 2024-09-18 15:54UTC
Event contains 6638 original clicks, 3319 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2931 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.61 |
| Median 10dB Center Frequency [kHz] | 9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 ( 7.8 - 9.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.08 (6.19 - 11.3) |
| Median duration [μs] (25-75 percentile) | 70 (0 - 1000) |
Time: 2024-09-18 15:54UTC to 2024-09-18 16:00UTC
Event contains 838 original clicks, 419 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 378 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.37 |
| Median 10dB Center Frequency [kHz] | 8.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (7.64 - 9.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.75 (6.16 - 10.6) |
| Median duration [μs] (25-75 percentile) | 38 (0 - 1000) |
Time: 2024-09-18 16:00UTC to 2024-09-18 16:06UTC
Event contains 758 original clicks, 379 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 348 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.73 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.08 - 7.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (4.94 - 9) |
| Median duration [μs] (25-75 percentile) | 22 (0 - 373) |
Time: 2024-09-18 16:06UTC to 2024-09-18 16:12UTC
Event contains 1668 original clicks, 834 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 706 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.81 |
| Median 10dB Center Frequency [kHz] | 6.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (5.93 - 7.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (4.31 - 9.04) |
| Median duration [μs] (25-75 percentile) | 111 (0 - 1326) |
Time: 2024-09-18 16:12UTC to 2024-09-18 16:18UTC
Event contains 3480 original clicks, 1740 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1561 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.06 |
| Median 10dB Center Frequency [kHz] | 8.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (7.26 - 8.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.33 (5.56 - 10.5) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 1000) |
Time: 2024-09-18 16:18UTC to 2024-09-18 16:24UTC
Event contains 3254 original clicks, 1627 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1473 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.98 |
| Median 10dB Center Frequency [kHz] | 7.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (7.15 - 8.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.89 (5.22 - 10) |
| Median duration [μs] (25-75 percentile) | 123 (0 - 1025) |
Time: 2024-09-18 16:24UTC to 2024-09-18 16:30UTC
Event contains 3096 original clicks, 1548 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1410 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.39 |
| Median 10dB Center Frequency [kHz] | 8.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (7.62 - 9.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.41 (5.69 - 10.8) |
| Median duration [μs] (25-75 percentile) | 42 (0 - 1000) |
Time: 2024-09-18 16:30UTC to 2024-09-18 16:36UTC
Event contains 3492 original clicks, 1746 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1569 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.08 |
| Median 10dB Center Frequency [kHz] | 8.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (7.15 - 8.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.38 (5.03 - 10.4) |
| Median duration [μs] (25-75 percentile) | 125 (0 - 1000) |
Time: 2024-09-18 16:36UTC to 2024-09-18 16:42UTC
Event contains 2800 original clicks, 1400 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1323 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.33 |
| Median 10dB Center Frequency [kHz] | 8.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.58 (7.36 - 9.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.88 (4.84 - 11) |
| Median duration [μs] (25-75 percentile) | 365 (0 - 1190) |
Time: 2024-09-18 16:42UTC to 2024-09-18 16:48UTC
Event contains 1756 original clicks, 878 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 821 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.48 |
| Median 10dB Center Frequency [kHz] | 8.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.68 (7.24 - 9.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.09 ( 5 - 11.1) |
| Median duration [μs] (25-75 percentile) | 438 (0 - 1298) |
Time: 2024-09-18 16:48UTC to 2024-09-18 16:54UTC
Event contains 1188 original clicks, 594 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 516 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.24 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (5.33 - 7.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.94 (3.69 - 9.34) |
| Median duration [μs] (25-75 percentile) | 176 (0 - 1000) |
Time: 2024-09-18 16:54UTC to 2024-09-18 17:00UTC
Event contains 656 original clicks, 328 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 291 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.6 |
| Median 10dB Center Frequency [kHz] | 7.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.58 (6.47 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.37 (5.25 - 9.89) |
| Median duration [μs] (25-75 percentile) | 136 (0 - 373) |
Time: 2024-09-18 17:00UTC to 2024-09-18 17:06UTC
Event contains 1316 original clicks, 658 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 600 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.76 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (6.01 - 7.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.11 ( 4.5 - 9.19) |
| Median duration [μs] (25-75 percentile) | 172 (0 - 1000) |
Time: 2024-09-18 17:06UTC to 2024-09-18 17:12UTC
Event contains 1664 original clicks, 832 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 757 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.8 |
| Median 10dB Center Frequency [kHz] | 8.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.96 (6.35 - 8.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.25 (3.42 - 11.1) |
| Median duration [μs] (25-75 percentile) | 368 (102 - 1945) |
Time: 2024-09-18 17:12UTC to 2024-09-18 17:18UTC
Event contains 1810 original clicks, 905 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 825 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 6.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (6.21 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 ( 4.4 - 9.41) |
| Median duration [μs] (25-75 percentile) | 94 (0 - 1000) |
Time: 2024-09-18 17:18UTC to 2024-09-18 17:24UTC
Event contains 2092 original clicks, 1046 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 928 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 6.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (5.15 - 6.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.92 (3.66 - 8.68) |
| Median duration [μs] (25-75 percentile) | 368 (46 - 1000) |
Time: 2024-09-18 17:24UTC to 2024-09-18 17:30UTC
Event contains 1748 original clicks, 874 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 642 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.81 |
| Median 10dB Center Frequency [kHz] | 6.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (5.09 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.75 (3.77 - 8.43) |
| Median duration [μs] (25-75 percentile) | 203 (0 - 1000) |
Time: 2024-09-18 17:30UTC to 2024-09-18 17:36UTC
Event contains 632 original clicks, 316 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 267 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.59 |
| Median 10dB Center Frequency [kHz] | 7.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (6.76 - 8.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.18 (5.56 - 9.7) |
| Median duration [μs] (25-75 percentile) | 50 (0 - 259) |
Time: 2024-09-18 17:48UTC to 2024-09-18 17:54UTC
Event contains 506 original clicks, 253 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 120 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.68 |
| Median 10dB Center Frequency [kHz] | 6.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.93 - 7.21) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (3.93 - 9.03) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-18 18:18UTC to 2024-09-18 18:24UTC
Event contains 810 original clicks, 405 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 285 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 7.93 |
| Median 10dB Center Frequency [kHz] | 7.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (7.32 - 8.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.05 (6.01 - 9.7) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 21) |
Time: 2024-09-18 18:24UTC to 2024-09-18 18:30UTC
Event contains 818 original clicks, 409 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 280 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.64 |
| Median 10dB Center Frequency [kHz] | 7.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.78 - 8.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.08 (5.55 - 9.87) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 176) |
Time: 2024-09-18 18:30UTC to 2024-09-18 18:36UTC
Event contains 780 original clicks, 390 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 325 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.18 |
| Median 10dB Center Frequency [kHz] | 8.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (7.22 - 9.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.04 (5.62 - 10.4) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 313) |
Time: 2024-09-18 18:36UTC to 2024-09-18 18:42UTC
Event contains 506 original clicks, 253 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 194 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.91 |
| Median 10dB Center Frequency [kHz] | 7.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (7.13 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 (5.51 - 9.74) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 50) |
Time: 2024-09-18 20:54UTC to 2024-09-18 21:00UTC
Event contains 722 original clicks, 361 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 267 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.93 |
| Median 10dB Center Frequency [kHz] | 6.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.16 - 7.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 ( 5 - 9.04) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-18 21:18UTC to 2024-09-18 21:24UTC
Event contains 892 original clicks, 446 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 371 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (4.73 - 6.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.3 (3.55 - 8.22) |
| Median duration [μs] (25-75 percentile) | 89 (0 - 1000) |
Time: 2024-09-18 21:24UTC to 2024-09-18 21:30UTC
Event contains 788 original clicks, 394 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 318 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 7.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 ( 7.1 - 8.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (4.87 - 10.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 43) |
Time: 2024-09-18 21:30UTC to 2024-09-18 21:36UTC
Event contains 1600 original clicks, 800 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 749 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.95 |
| Median 10dB Center Frequency [kHz] | 7.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.25 - 7.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (5.03 - 9.45) |
| Median duration [μs] (25-75 percentile) | 443 (0 - 1097) |
Time: 2024-09-18 21:36UTC to 2024-09-18 21:42UTC
Event contains 1570 original clicks, 785 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 717 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.83 |
| Median 10dB Center Frequency [kHz] | 7.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (7.02 - 8.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.08 (5.36 - 9.98) |
| Median duration [μs] (25-75 percentile) | 224 (0 - 1000) |
Time: 2024-09-18 21:42UTC to 2024-09-18 21:48UTC
Event contains 1316 original clicks, 658 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 621 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.92 |
| Median 10dB Center Frequency [kHz] | 7.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (7.07 - 8.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.53 (5.96 - 10.1) |
| Median duration [μs] (25-75 percentile) | 162 (0 - 1000) |
Time: 2024-09-18 21:48UTC to 2024-09-18 21:54UTC
Event contains 1826 original clicks, 913 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 808 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.98 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.35 (6.09 - 8.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.07 (4.31 - 9.69) |
| Median duration [μs] (25-75 percentile) | 428 (0 - 1000) |
Time: 2024-09-18 21:54UTC to 2024-09-18 22:00UTC
Event contains 1376 original clicks, 688 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 609 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.03 |
| Median 10dB Center Frequency [kHz] | 8.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (7.08 - 8.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.41 (4.81 - 11) |
| Median duration [μs] (25-75 percentile) | 474 (100 - 1000) |
Time: 2024-09-18 22:12UTC to 2024-09-18 22:18UTC
Event contains 708 original clicks, 354 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 324 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 7.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (6.71 - 8.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (4.69 - 10.1) |
| Median duration [μs] (25-75 percentile) | 113 (0 - 308) |
Time: 2024-09-18 22:18UTC to 2024-09-18 22:24UTC
Event contains 1634 original clicks, 817 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 734 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.86 |
| Median 10dB Center Frequency [kHz] | 7.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.72 (6.74 - 8.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.53 ( 4.7 - 10.7) |
| Median duration [μs] (25-75 percentile) | 269 (23 - 1144) |
Time: 2024-09-18 22:24UTC to 2024-09-18 22:30UTC
Event contains 1266 original clicks, 633 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 572 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.99 |
| Median 10dB Center Frequency [kHz] | 8.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.9 (6.93 - 8.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.42 ( 4.6 - 10.8) |
| Median duration [μs] (25-75 percentile) | 318 (100 - 2175) |
Time: 2024-09-18 22:30UTC to 2024-09-18 22:36UTC
Event contains 1218 original clicks, 609 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 551 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.47 |
| Median 10dB Center Frequency [kHz] | 7.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (6.61 - 8.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.71 (4.77 - 10.4) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 235) |
Time: 2024-09-18 22:36UTC to 2024-09-18 22:42UTC
Event contains 1120 original clicks, 560 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 542 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 6.93 |
| Median 10dB Center Frequency [kHz] | 7.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.61 (5.98 - 7.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.95 (3.91 - 10.4) |
| Median duration [μs] (25-75 percentile) | 228 (22 - 1000) |
Time: 2024-09-18 22:42UTC to 2024-09-18 22:48UTC
Event contains 1106 original clicks, 553 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 516 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.4 |
| Median 10dB Center Frequency [kHz] | 8.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.89 (7.25 - 9.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.57 (4.61 - 11.3) |
| Median duration [μs] (25-75 percentile) | 189 (48 - 465) |
Time: 2024-09-18 22:48UTC to 2024-09-18 22:54UTC
Event contains 986 original clicks, 493 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 472 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.12 |
| Median 10dB Center Frequency [kHz] | 8.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (7.39 - 8.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.12 (6.04 - 10.3) |
| Median duration [μs] (25-75 percentile) | 489 (0 - 1066) |
Time: 2024-09-18 23:06UTC to 2024-09-18 23:12UTC
Event contains 476 original clicks, 238 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 187 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.72 |
| Median 10dB Center Frequency [kHz] | 7.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (7.04 - 8.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.78 (5.32 - 9.98) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 30) |
Time: 2024-09-18 23:12UTC to 2024-09-18 23:18UTC
Event contains 750 original clicks, 375 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 278 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.07 |
| Median 10dB Center Frequency [kHz] | 7.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (7.21 - 8.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (5.68 - 9.93) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 114) |
Time: 2024-09-18 23:18UTC to 2024-09-18 23:24UTC
Event contains 966 original clicks, 483 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 442 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.46 |
| Median 10dB Center Frequency [kHz] | 7.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.68 - 8.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.57 (4.62 - 10.1) |
| Median duration [μs] (25-75 percentile) | 34 (0 - 431) |
Time: 2024-09-18 23:24UTC to 2024-09-18 23:30UTC
Event contains 560 original clicks, 280 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 239 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.15 |
| Median 10dB Center Frequency [kHz] | 8.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (7.18 - 9.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.8 (5.29 - 11) |
| Median duration [μs] (25-75 percentile) | 36 (0 - 205) |
Time: 2024-09-18 23:30UTC to 2024-09-18 23:36UTC
Event contains 700 original clicks, 350 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 310 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 7.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (6.85 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.84 (4.79 - 10.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 115) |
Time: 2024-09-19 04:30UTC to 2024-09-19 04:36UTC
Event contains 694 original clicks, 347 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 196 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7 |
| Median 3dB Center Frequency [kHz] | 6.65 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.78 - 7.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.75 (4.49 - 9.21) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 04:36UTC to 2024-09-19 04:42UTC
Event contains 1112 original clicks, 556 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 358 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.15 |
| Median 10dB Center Frequency [kHz] | 6.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.45 - 6.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (3.98 - 8.16) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 12:54UTC to 2024-09-19 13:00UTC
Event contains 454 original clicks, 227 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 157 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.08 |
| Median 10dB Center Frequency [kHz] | 8.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.76 ( 6.8 - 9.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.31 (4.82 - 11.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 115) |
Time: 2024-09-19 13:42UTC to 2024-09-19 13:48UTC
Event contains 1312 original clicks, 656 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 505 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.72 |
| Median 10dB Center Frequency [kHz] | 7.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 ( 6 - 7.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.63 (4.17 - 9.93) |
| Median duration [μs] (25-75 percentile) | 57 (0 - 1000) |
Time: 2024-09-19 13:48UTC to 2024-09-19 13:54UTC
Event contains 616 original clicks, 308 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 207 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.89 |
| Median 10dB Center Frequency [kHz] | 9.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (8.26 - 9.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (6.47 - 11.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 30) |
Time: 2024-09-19 13:54UTC to 2024-09-19 14:00UTC
Event contains 842 original clicks, 421 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 279 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 7.26 |
| Median 10dB Center Frequency [kHz] | 8.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.71 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.31 (5.53 - 10.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-19 14:00UTC to 2024-09-19 14:06UTC
Event contains 832 original clicks, 416 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 312 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 6.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.24 - 6.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (3.91 - 8.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 267) |
Time: 2024-09-19 14:54UTC to 2024-09-19 15:00UTC
Event contains 1250 original clicks, 625 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 510 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.58 |
| Median 10dB Center Frequency [kHz] | 7.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (6.86 - 8.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (5.26 - 9.43) |
| Median duration [μs] (25-75 percentile) | 514 (0 - 1459) |
Time: 2024-09-19 15:00UTC to 2024-09-19 15:06UTC
Event contains 1160 original clicks, 580 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 533 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.83 |
| Median 10dB Center Frequency [kHz] | 6.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (5.97 - 7.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (4.64 - 8.86) |
| Median duration [μs] (25-75 percentile) | 175 (0 - 1000) |
Time: 2024-09-19 15:06UTC to 2024-09-19 15:12UTC
Event contains 1018 original clicks, 509 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 448 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.25 |
| Median 10dB Center Frequency [kHz] | 7.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (6.37 - 7.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.9 (4.49 - 10.5) |
| Median duration [μs] (25-75 percentile) | 517 (0 - 1288) |
Time: 2024-09-19 15:12UTC to 2024-09-19 15:18UTC
Event contains 1426 original clicks, 713 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 622 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 7.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.57 (6.03 - 8.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.76 (4.43 - 10.6) |
| Median duration [μs] (25-75 percentile) | 112 (0 - 1281) |
Time: 2024-09-19 15:18UTC to 2024-09-19 15:24UTC
Event contains 2280 original clicks, 1140 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 809 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.32 |
| Median 10dB Center Frequency [kHz] | 7.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (6.53 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.1 (4.66 - 9.74) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-09-19 15:24UTC to 2024-09-19 15:30UTC
Event contains 2702 original clicks, 1351 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 987 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.26 |
| Median 10dB Center Frequency [kHz] | 7.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (6.57 - 8.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.96 (4.45 - 10.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 172) |
Time: 2024-09-19 15:36UTC to 2024-09-19 15:42UTC
Event contains 1358 original clicks, 679 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 586 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.82 |
| Median 10dB Center Frequency [kHz] | 6.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (5.04 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.89 (3.89 - 8.36) |
| Median duration [μs] (25-75 percentile) | 228 (8 - 1000) |
Time: 2024-09-19 15:42UTC to 2024-09-19 15:48UTC
Event contains 3936 original clicks, 1968 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1662 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.4 |
| Median 10dB Center Frequency [kHz] | 7.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.67 - 8.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.06 (5.08 - 9.97) |
| Median duration [μs] (25-75 percentile) | 119 (0 - 1000) |
Time: 2024-09-19 15:48UTC to 2024-09-19 15:54UTC
Event contains 5442 original clicks, 2721 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2218 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.89 |
| Median 10dB Center Frequency [kHz] | 7.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.12 - 7.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.15 (4.61 - 9.84) |
| Median duration [μs] (25-75 percentile) | 70 (0 - 456) |
Time: 2024-09-19 15:54UTC to 2024-09-19 16:00UTC
Event contains 5508 original clicks, 2754 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2242 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.63 - 8.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 (4.81 - 9.98) |
| Median duration [μs] (25-75 percentile) | 60 (0 - 393) |
Time: 2024-09-19 16:00UTC to 2024-09-19 16:06UTC
Event contains 6288 original clicks, 3144 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2498 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (5.04 - 6.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.56 (3.59 - 9.12) |
| Median duration [μs] (25-75 percentile) | 96 (0 - 1000) |
Time: 2024-09-19 16:06UTC to 2024-09-19 16:12UTC
Event contains 5696 original clicks, 2848 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2402 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.81 |
| Median 10dB Center Frequency [kHz] | 6.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (5.04 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (3.73 - 8.74) |
| Median duration [μs] (25-75 percentile) | 190 (3 - 1000) |
Time: 2024-09-19 16:30UTC to 2024-09-19 16:36UTC
Event contains 1092 original clicks, 546 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 306 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.6 |
| Median 10dB Center Frequency [kHz] | 6.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (5.88 - 7.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (4.46 - 9.29) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 18) |
Time: 2024-09-19 16:36UTC to 2024-09-19 16:42UTC
Event contains 1024 original clicks, 512 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 256 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.56 - 6.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.3 (4.13 - 9.27) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 18:36UTC to 2024-09-19 18:42UTC
Event contains 682 original clicks, 341 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 164 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.5 |
| Median 10dB Center Frequency [kHz] | 6.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.58 - 7.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.72 (4.28 - 9.34) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 18:42UTC to 2024-09-19 18:48UTC
Event contains 2400 original clicks, 1200 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 934 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.35 |
| Median 10dB Center Frequency [kHz] | 6.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 ( 5.4 - 7.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.21 (4.16 - 9.08) |
| Median duration [μs] (25-75 percentile) | 119 (0 - 1000) |
Time: 2024-09-19 18:48UTC to 2024-09-19 18:54UTC
Event contains 5716 original clicks, 2858 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2588 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.73 |
| Median 10dB Center Frequency [kHz] | 8.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.62 ( 6.6 - 8.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.84 ( 4.8 - 10.9) |
| Median duration [μs] (25-75 percentile) | 334 (5 - 1106) |
Time: 2024-09-19 18:54UTC to 2024-09-19 19:00UTC
Event contains 5202 original clicks, 2601 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2342 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.4 |
| Median 10dB Center Frequency [kHz] | 7.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 ( 6.3 - 8.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.14 (4.44 - 10.7) |
| Median duration [μs] (25-75 percentile) | 323 (3 - 1009) |
Time: 2024-09-19 19:00UTC to 2024-09-19 19:06UTC
Event contains 4054 original clicks, 2027 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1808 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.79 |
| Median 10dB Center Frequency [kHz] | 7.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.69 (5.57 - 7.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.77 (4.17 - 10.8) |
| Median duration [μs] (25-75 percentile) | 355 (3 - 1409) |
Time: 2024-09-19 19:06UTC to 2024-09-19 19:12UTC
Event contains 1410 original clicks, 705 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 555 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.34 |
| Median 10dB Center Frequency [kHz] | 6.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (5.48 - 7.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.12 ( 4.2 - 9.85) |
| Median duration [μs] (25-75 percentile) | 104 (0 - 434) |
Time: 2024-09-19 19:12UTC to 2024-09-19 19:18UTC
Event contains 3978 original clicks, 1989 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1753 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.85 |
| Median 10dB Center Frequency [kHz] | 8.42 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.59 (6.68 - 8.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.29 (4.83 - 11.3) |
| Median duration [μs] (25-75 percentile) | 214 (0 - 1000) |
Time: 2024-09-19 19:18UTC to 2024-09-19 19:24UTC
Event contains 7180 original clicks, 3590 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3347 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 9.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.96 (6.53 - 9.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.38 (4.55 - 12.3) |
| Median duration [μs] (25-75 percentile) | 394 (100 - 2417) |
Time: 2024-09-19 19:24UTC to 2024-09-19 19:30UTC
Event contains 10474 original clicks, 5237 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4866 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.83 |
| Median 10dB Center Frequency [kHz] | 9.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.15 (6.98 - 10.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.56 (4.58 - 13.5) |
| Median duration [μs] (25-75 percentile) | 585 (180 - 2469) |
Time: 2024-09-19 19:30UTC to 2024-09-19 19:36UTC
Event contains 7972 original clicks, 3986 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3647 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.59 |
| Median 10dB Center Frequency [kHz] | 9.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.66 (7.15 - 9.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.42 (4.91 - 12.2) |
| Median duration [μs] (25-75 percentile) | 420 (0 - 2269) |
Time: 2024-09-19 19:36UTC to 2024-09-19 19:42UTC
Event contains 5600 original clicks, 2800 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2529 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.48 |
| Median 10dB Center Frequency [kHz] | 8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.71 - 8.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.29 (4.68 - 10.5) |
| Median duration [μs] (25-75 percentile) | 78 (0 - 1000) |
Time: 2024-09-19 19:42UTC to 2024-09-19 19:48UTC
Event contains 7128 original clicks, 3564 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3315 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.92 |
| Median 10dB Center Frequency [kHz] | 8.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 ( 7.1 - 8.78) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.65 ( 5 - 11.1) |
| Median duration [μs] (25-75 percentile) | 201 (0 - 1000) |
Time: 2024-09-19 19:48UTC to 2024-09-19 19:54UTC
Event contains 9130 original clicks, 4565 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4149 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.79 |
| Median 10dB Center Frequency [kHz] | 9.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (7.75 - 9.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.85 (5.63 - 12.1) |
| Median duration [μs] (25-75 percentile) | 222 (0 - 1000) |
Time: 2024-09-19 19:54UTC to 2024-09-19 20:00UTC
Event contains 10530 original clicks, 5265 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4796 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.71 |
| Median 10dB Center Frequency [kHz] | 9.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (7.56 - 9.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.96 ( 5.1 - 12.3) |
| Median duration [μs] (25-75 percentile) | 222 (0 - 1000) |
Time: 2024-09-19 20:00UTC to 2024-09-19 20:06UTC
Event contains 10548 original clicks, 5274 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4946 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.31 |
| Median 10dB Center Frequency [kHz] | 8.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (7.12 - 9.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.88 (4.77 - 11.9) |
| Median duration [μs] (25-75 percentile) | 391 (0 - 1621) |
Time: 2024-09-19 20:06UTC to 2024-09-19 20:12UTC
Event contains 10108 original clicks, 5054 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4617 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.43 |
| Median 10dB Center Frequency [kHz] | 8.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (7.32 - 9.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.6 (5.16 - 11.7) |
| Median duration [μs] (25-75 percentile) | 136 (0 - 1000) |
Time: 2024-09-19 20:12UTC to 2024-09-19 20:18UTC
Event contains 7872 original clicks, 3936 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3618 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.44 - 8.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (4.82 - 10.3) |
| Median duration [μs] (25-75 percentile) | 115 (0 - 1000) |
Time: 2024-09-19 20:18UTC to 2024-09-19 20:24UTC
Event contains 7874 original clicks, 3937 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3576 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.15 |
| Median 10dB Center Frequency [kHz] | 7.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 ( 6.2 - 8.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.06 (4.46 - 10.2) |
| Median duration [μs] (25-75 percentile) | 104 (0 - 1000) |
Time: 2024-09-19 20:24UTC to 2024-09-19 20:30UTC
Event contains 6050 original clicks, 3025 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2770 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 7.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 ( 5.5 - 7.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.75 (3.75 - 10.3) |
| Median duration [μs] (25-75 percentile) | 214 (0 - 1000) |
Time: 2024-09-19 20:30UTC to 2024-09-19 20:36UTC
Event contains 8862 original clicks, 4431 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3964 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.4 |
| Median 10dB Center Frequency [kHz] | 8.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (6.13 - 8.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.08 (4.31 - 11.4) |
| Median duration [μs] (25-75 percentile) | 177 (0 - 1000) |
Time: 2024-09-19 20:36UTC to 2024-09-19 20:42UTC
Event contains 8236 original clicks, 4118 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3641 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.32 |
| Median 10dB Center Frequency [kHz] | 7.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (5.12 - 7.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.76 (3.79 - 10.1) |
| Median duration [μs] (25-75 percentile) | 172 (0 - 1000) |
Time: 2024-09-19 20:42UTC to 2024-09-19 20:48UTC
Event contains 8456 original clicks, 4228 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3787 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.71 |
| Median 10dB Center Frequency [kHz] | 7.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.56 (5.66 - 7.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.13 (4.02 - 10.4) |
| Median duration [μs] (25-75 percentile) | 242 (8 - 1000) |
Time: 2024-09-19 20:48UTC to 2024-09-19 20:54UTC
Event contains 6226 original clicks, 3113 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2781 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.6 |
| Median 10dB Center Frequency [kHz] | 7.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (5.59 - 7.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.95 (4.01 - 10.2) |
| Median duration [μs] (25-75 percentile) | 154 (0 - 477) |
Time: 2024-09-19 20:54UTC to 2024-09-19 21:00UTC
Event contains 4344 original clicks, 2172 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1918 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.74 |
| Median 10dB Center Frequency [kHz] | 7.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (5.85 - 7.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.4 (4.34 - 9.99) |
| Median duration [μs] (25-75 percentile) | 83 (0 - 1000) |
Time: 2024-09-19 21:00UTC to 2024-09-19 21:06UTC
Event contains 5164 original clicks, 2582 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2296 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (5.39 - 7.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.12 (3.76 - 9.08) |
| Median duration [μs] (25-75 percentile) | 133 (0 - 1000) |
Time: 2024-09-19 21:06UTC to 2024-09-19 21:12UTC
Event contains 3960 original clicks, 1980 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1699 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.01 |
| Median 10dB Center Frequency [kHz] | 7.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (6.16 - 7.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 (4.66 - 9.84) |
| Median duration [μs] (25-75 percentile) | 76 (0 - 390) |
Time: 2024-09-19 21:12UTC to 2024-09-19 21:18UTC
Event contains 6380 original clicks, 3190 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2703 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (4.86 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 (3.79 - 8.45) |
| Median duration [μs] (25-75 percentile) | 203 (0 - 1000) |
Time: 2024-09-19 21:24UTC to 2024-09-19 21:30UTC
Event contains 3488 original clicks, 1744 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1377 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.19 |
| Median 10dB Center Frequency [kHz] | 6.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (5.33 - 7.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.19 (3.98 - 8.75) |
| Median duration [μs] (25-75 percentile) | 26 (0 - 276) |
Time: 2024-09-19 21:36UTC to 2024-09-19 21:42UTC
Event contains 420 original clicks, 210 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 148 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.08 |
| Median 10dB Center Frequency [kHz] | 5.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.28 - 6.78) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.72 (3.71 - 7.84) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-19 21:48UTC to 2024-09-19 21:54UTC
Event contains 724 original clicks, 362 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 326 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.62 |
| Median 10dB Center Frequency [kHz] | 8.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (6.78 - 8.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.4 (5.79 - 10.6) |
| Median duration [μs] (25-75 percentile) | 229 (1e+0 - 1000) |
Time: 2024-09-19 21:54UTC to 2024-09-19 22:00UTC
Event contains 670 original clicks, 335 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 315 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.7 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 ( 6.1 - 7.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.38 (4.28 - 9.02) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 282) |
Time: 2024-09-20 00:18UTC to 2024-09-20 00:24UTC
Event contains 416 original clicks, 208 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 28 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 15 |
| Median 3dB Center Frequency [kHz] | 10.2 |
| Median 10dB Center Frequency [kHz] | 10.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.657 (9.93 - 10.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.7 (9.49 - 11.6) |
| Median duration [μs] (25-75 percentile) | 57 (33 - 136) |
Time: 2024-09-20 00:24UTC to 2024-09-20 00:30UTC
Event contains 508 original clicks, 254 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 62 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12 |
| Median 3dB Center Frequency [kHz] | 10.6 |
| Median 10dB Center Frequency [kHz] | 11.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (10.1 - 11.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (8.74 - 13.4) |
| Median duration [μs] (25-75 percentile) | 86 (36 - 257) |
Time: 2024-09-20 09:06UTC to 2024-09-20 09:12UTC
Event contains 518 original clicks, 259 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 50 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 10 |
| Median 10dB Center Frequency [kHz] | 10.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.587 (9.76 - 10.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.41 (9.37 - 10.8) |
| Median duration [μs] (25-75 percentile) | 141 (48 - 1000) |
Time: 2024-09-20 09:18UTC to 2024-09-20 09:24UTC
Event contains 472 original clicks, 236 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 53 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 13.6 |
| Median 3dB Center Frequency [kHz] | 11.6 |
| Median 10dB Center Frequency [kHz] | 11.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.58 (11.2 - 12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.35 (10.7 - 12.2) |
| Median duration [μs] (25-75 percentile) | 50 (36 - 100) |
# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
#dbDisconnect(dbFile)
After additional filtering based on median peak frequency, 333 events events of 1700 original events remain.